FittedCoordSys Constructor

WRAPPER_API FittedCoordSys()

WRAPPER_API FittedCoordSys(const CoordSys &baseCoordSys, CoordPoint::ClassType pointType, MathTransform::ClassType mathType)

WRAPPER_API FittedCoordSys(const FittedCoordSys &source)

 

Description

The FittedCoordSys constructor creates a new instance of the FittedCoordSys class.  There are three signatures for this constructor.  

The first signature takes no arguments and produces a FittedCoordSys that is not ready to use.  The BaseCoordSys must be set, and the MathTransforms used for TransformAhead and TransformBack need to be set up.  

The second signature takes three arguments that allow the user to specify the BaseCoordSys, the type of point to be used in the FittedCoordSys, and the type of MathTransform to use for TransformAhead and TransformBack.  The MathTransforms still need to be customized before the FittedCoordSys can be used.

The third signature is a copy-constructor, which produces a FittedCoordSys with a value that is equal to the FittedCoordSys that is passed as argument.