WRAPPER_API CoordPoint &get_MaxPoint()
WRAPPER_API const CoordPoint &get_MaxPoint() const
The get_MaxPoint method returns the CoordPoint that defines the upper bound of this Envelope.
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;
}