NTMultiGeometry


@interface NTMultiGeometry : NTGeometry

A generic multi geometry container.

  • Constructs a MultiGeometry from a vector of geometry objects.

    Declaration

    Objective-C

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

    Parameters

    geometries

    The geometries for multi geometry.

  • Undocumented

    Declaration

    Objective-C

    - (NTMapPos *)getCenterPos;
  • Returns the number of geometry objects in this multi geometry container.

    Declaration

    Objective-C

    - (int)getGeometryCount;

    Return Value

    The number of geometry objects.

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

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

    Parameters

    index

    The index of the geometry.

    Return Value

    The geometry at specified index.

  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;