NTMultiPointGeometry
@interface NTMultiPointGeometry : NTMultiGeometry
A multipoint container.
-
Constructs a MultiPointGeometry from the vector of points.
Declaration
Objective-C
- (id)initWithGeometries:(NTPointGeometryVector *)geometries;
Parameters
geometries
The vector of point geometries.
-
Returns the point geometry at the specified index. Index must be between 0 and getGeometryCount (exclusive)
Warning
Throws NSException If the index is out of range.Declaration
Objective-C
- (NTPointGeometry *)getGeometry:(int)index;
Parameters
index
The index of the point geometry.
Return Value
The point geometry at specified index.
-
Undocumented
Declaration
Objective-C
-(void)dealloc;