ProjectedPoint Constructor

WRAPPER_API ProjectedPoint()

WRAPPER_API ProjectedPoint(short dimensions)

WRAPPER_API ProjectedPoint(double east, double north)

WRAPPER_API ProjectedPoint(double east, double north, double height)

WRAPPER_API ProjectedPoints(const ProjectedPoint &source)

 

Description

The ProjectedPoint constructor creates a new instance of the ProjectedPoint class.  There are five signatures for this constructor.

The first signature takes no arguments and produces a three-dimensional ProjectedPoint located at the origin of the ProjectedCoordSys that uses meters as the Units on each of its coordinates.

The second signature takes a single argument that indicates the number of Dimensions for the resulting ProjectedPoint, which will be located at the origin of the ProjectedCoordSys and will use meters as the Units on each of its coordinates.

The third signature takes two arguments, which indicate the East and North coordinate values in meters.  The resulting ProjectedPoint has a Dimensions value of two and uses meters as the Units on each of its coordinates.

The fourth signature takes three arguments, which indicate the East, North, and Height coordinate values in meters.  The resulting ProjectedPoint has a Dimensions value of three and uses meters as the Units on each of its coordinates.

The final signature iss a copy-constructor, which produces a ProjectedPoint with the same value as the ProjectedPoint passed as argument.