get_MaxPoint Method

WRAPPER_API CoordPoint &get_MaxPoint()

WRAPPER_API const CoordPoint &get_MaxPoint() const

 

Description

The get_MaxPoint method returns the CoordPoint that defines the upper bound of this Envelope.

 

Example

void Envelope_getMaxPoint(GeoCalcPBW::Envelope & env)

{

GeoCalcPBW::CoordPoint * pt = env.get_MaxPoint().CloneCoordPoint();

pt->set_InUnits(1, 2);

bool inBounds = env.InBounds(*pt);

 

delete pt;

}