AbstractGeometryObject
Objective-C
@interface AbstractGeometryObject : NSObject
Swift
class AbstractGeometryObject : NSObject
This class encapsulates abstract geometry information.
-
Initializes and returns a newly allocated object using the model data.
Declaration
Objective-C
- (nonnull instancetype)initWithModelData:(nonnull void *)data;
-
Returns the model data.
Declaration
Objective-C
- (nonnull void *)getModelData;
-
Get the anchor type.
Declaration
Objective-C
- (RoadAnchorType)getAnchorType;
Swift
func getAnchorType() -> RoadAnchorType
-
Get the drive side.
-
Get the list with AbstractGeometryItemObject elements.
Declaration
Objective-C
- (nonnull NSArray<AbstractGeometryItemObject *> *)getItems;
Swift
func getItems() -> [AbstractGeometryItemObject]
-
Get the number of left side intermediate turns.
Declaration
Objective-C
- (int)getLeftIntermediateTurns;
Swift
func getLeftIntermediateTurns() -> Int32
-
Get the number of right side intermediate turns.
Declaration
Objective-C
- (int)getRightIntermediateTurns;
Swift
func getRightIntermediateTurns() -> Int32