Click or drag to resize

CoordinateTransformationTransform Method (Point, Point)

Transforms an array of System.Windows.Point.

Namespace:  Ptv.Components.Projections
Assembly:  Ptv.Components.Projections (in Ptv.Components.Projections.dll) Version: 1.7.10.0
Syntax
public virtual void Transform(
	Point[] pointsIn,
	Point[] pointsOut
)

Parameters

pointsIn
Type: System.WindowsPoint
Array containing the points to transform.
pointsOut
Type: System.WindowsPoint
Array in which to put the transformed points.

Implements

ICoordinateTransformationTransform(Point, Point)
Exceptions
ExceptionCondition
TransformationExceptionThrown in the unlikely event that a coordinate transformation fails.
Remarks
If pointsOut is set to null the transformed locations are written back to the input array. It is also valid to specify the input array in pointsOut, which is the same as setting pointsOut to null.
See Also