| 
            
              TransformationUntransform Method
             | 
          
        
        
            Untransforms the given point to its original location.
            
        
        Namespace: GSF.GeoAssembly: GSF.Geo (in GSF.Geo.dll) Version: 2.4.257.0 (2.4.257.0)
Syntaxpublic Point Untransform(
	Point point,
	double scale = 1
)
Public Function Untransform ( 
	point As Point,
	Optional scale As Double = 1
) As Point
public:
Point^ Untransform(
	Point^ point, 
	double scale = 1
)
member Untransform : 
        point : Point * 
        ?scale : float 
(* Defaults:
        let _scale = defaultArg scale 1
*)
-> Point function Untransform(point, scale);
 View SourceParameters
- point  Point
 - The transformed point.
 - scale  Double  (Optional)
 - The scale that was applied after the transformation.
 
Return Value
PointThe original point.
See Also