Get/Set
The TransformBack property provides access to the MathTransform that converts points from this FittedCoordSys to the BaseCoordSys.
Private Sub GeoCalcNET_FittedCoordSys_TransformBack(ByVal cs As GeoCalcNET.FittedCoordSys)
Dim mtBack As GeoCalcNET.MathTransform = cs.TransformBack
cs.TransformBack = New GeoCalcNET.MathTransform(GeoCalcNET.MathTransform.ClassType.Affine)
cs.TransformBack.Parameters.FloatItem("dx") = 0
cs.TransformBack.Parameters.FloatItem("dxx") = 1
cs.TransformBack.Parameters.FloatItem("dxy") = 0
cs.TransformBack.Parameters.FloatItem("dy") = 0
cs.TransformBack.Parameters.FloatItem("dyy") = 1
cs.TransformBack.Parameters.FloatItem("dyx") = 0
End Sub
private void GeoCalcNET_FittedCoordSys_TransformBack(GeoCalcNET.FittedCoordSys fcs)
{
GeoCalcNET.MathTransform mtBack = fcs.TransformBack;
fcs.TransformBack = new GeoCalcNET.MathTransform(GeoCalcNET.MathTransform.ClassType.Affine);
fcs.TransformBack.Parameters.set_FloatItem("dx", 0);
fcs.TransformBack.Parameters.set_FloatItem("dxx", 1);
fcs.TransformBack.Parameters.set_FloatItem("dxy", 0);
fcs.TransformBack.Parameters.set_FloatItem("dy", 0);
fcs.TransformBack.Parameters.set_FloatItem("dyx", 0);
fcs.TransformBack.Parameters.set_FloatItem("dyy", 1);
}