CRSCoordinateSystem
Objective-C
@interface CRSCoordinateSystem : NSObject <CRSIdentifiable>Swift
class CRSCoordinateSystem : NSObject, CRSIdentifiableCoordinate System
- 
                  
                  Type DeclarationObjective-C @property (nonatomic) enum CRSCoordinateSystemType type;Swift var type: CRSCoordinateSystemType { get set }
- 
                  
                  Dimension DeclarationObjective-C @property (nonatomic) int dimension;Swift var dimension: Int32 { get set }
- 
                  
                  Identifiers DeclarationObjective-C @property (nonatomic, strong) NSMutableArray<CRSIdentifier *> *identifiers;Swift var identifiers: NSMutableArray! { get set }
- 
                  
                  Axes DeclarationObjective-C @property (nonatomic, strong) NSMutableArray<CRSAxis *> *axes;Swift var axes: NSMutableArray! { get set }
- 
                  
                  Create DeclarationObjective-C + (CRSCoordinateSystem *)create;Swift class func create() -> CRSCoordinateSystem!Return Valuenew instance 
- 
                  
                  Initialize DeclarationObjective-C - (instancetype)init;Swift init!()Return Valuenew instance 
- 
                  
                  Initialize DeclarationObjective-C - (instancetype)initWithType:(enum CRSCoordinateSystemType)type andDimension:(int)dimension andAxis:(CRSAxis *)axis;Swift init!(type: CRSCoordinateSystemType, andDimension dimension: Int32, andAxis axis: CRSAxis!)Parameterstypetype dimensiondimension axisaxis Return Valuenew instance 
- 
                  
                  Initialize DeclarationObjective-C - (instancetype)initWithType:(enum CRSCoordinateSystemType)type andDimension:(int)dimension andAxes:(NSArray<CRSAxis *> *)axes;Swift init!(type: CRSCoordinateSystemType, andDimension dimension: Int32, andAxes axes: [CRSAxis]!)Parameterstypetype dimensiondimension axesaxes Return Valuenew instance 
- 
                  
                  Number of axes DeclarationObjective-C - (int)numAxes;Swift func numAxes() -> Int32Return Valueaxes count 
- 
                  
                  Add the axis Parametersaxisaxis 
- 
                  
                  Has a unit DeclarationObjective-C - (BOOL)hasUnit;Swift func hasUnit() -> BoolReturn Valuetrue if has unit 
- 
                  
                  Get the axis unit, either the CS unit or first axis with unit Return Valueunit 
 View on GitHub
View on GitHub CRSCoordinateSystem Class Reference
        CRSCoordinateSystem Class Reference