NTMultiPolygonGeometry


@interface NTMultiPolygonGeometry : NTMultiGeometry

A multipolygon container.

  • Constructs a MultiPolygonGeometry from the vector of polygons.

    Declaration

    Objective-C

    - (id)initWithGeometries:(NTPolygonGeometryVector *)geometries;

    Parameters

    geometries

    The vector of polygon geometries.

  • Returns the polygon 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

    - (NTPolygonGeometry *)getGeometry:(int)index;

    Parameters

    index

    The index of the polygon geometry.

    Return Value

    The polygon geometry at specified index.

  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;