RGLMeasureSystem

This page covers the description of the RGLMeasureSystem enumeration

The constants of RGLMeasureSystem enumeration identify the system for measuring distances and weight.

typedef NS_ENUM(NSInteger, RGLMeasureSystem) {
  RGLMeasureSystemMetric = 0,
  RGLMeasureSystemImperial = 1
} NS_SWIFT_NAME(MeasureSystem);

Constant

Description

RGLMeasureSystemMetric

It's the Metric System of Measurement, which uses the measuring units such as meters and grams and adds prefixes like kilo, milli and centi to count orders of magnitude.

RGLMeasureSystemImperial

It's the Imperial System of Measurement, where things are measured in feet, inches and pounds.

Last updated

Was this helpful?