CoordinateTransformationTransform Method (Point, 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
)
Public Overridable Sub Transform (
pointsIn As Point(),
pointsOut As Point()
)
public:
virtual void Transform(
array<Point>^ pointsIn,
array<Point>^ pointsOut
)
abstract Transform :
pointsIn : Point[] *
pointsOut : Point[] -> unit
override Transform :
pointsIn : Point[] *
pointsOut : Point[] -> unit
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 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