IsSolved Method

WRAPPER_API bool IsSolved() const

 

Description

The IsSolved method indicates if this MathTransform has been solved and is ready to Transform.

 

Example

void MathTransform_IsSolved(GEOCALCPBW_NAMESPACE::MathTransform & mt, GEOCALCPBW_NAMESPACE::CoordPoint & inPt, GEOCALCPBW_NAMESPACE::CoordPoint & outPt)

{

if(! mt.IsSolved())

{

AfxMessageBox("Cannot transform, MathTransform not solved");

}

if(! mt.Transform(inPt, outPt))

{

AfxMessageBox("Transform failed");

}

}