public bool IsSolved() const
Description
The IsSolved method indicates if this MathTransform has been solved and is ready to Transform.
Example
void MathTransform_IsSolved(GeoCalc.MathTransform & mt, GeoCalc.CoordPoint & inPt, GeoCalc.CoordPoint & outPt)
{
if(! mt.IsSolved())
{
AfxMessageBox("Cannot transform, MathTransform not solved");
}
if(! mt.Transform(inPt, outPt))
{
AfxMessageBox("Transform failed");
}
}
Comments
0 comments
Please sign in to leave a comment.