Graphics.TransformPoints

TransformPoints(CoordinateSpace, CoordinateSpace, PointF[])

Transforms an array of points from one coordinate space to another using the current world and page transformations of this Graphics.

public void TransformPoints(CoordinateSpace destSpace, CoordinateSpace srcSpace, PointF[] pts)
ParameterTypeDescription
destSpaceCoordinateSpaceMember of the CoordinateSpace enumeration that specifies the destination coordinate space.
srcSpaceCoordinateSpaceMember of the CoordinateSpace enumeration that specifies the source coordinate space.
ptsPointF[]Array of PointF structures that represent the points to transform.

See Also


TransformPoints(CoordinateSpace, CoordinateSpace, Point[])

Transforms an array of points from one coordinate space to another using the current world and page transformations of this Graphics.

public void TransformPoints(CoordinateSpace destSpace, CoordinateSpace srcSpace, Point[] pts)
ParameterTypeDescription
destSpaceCoordinateSpaceMember of the CoordinateSpace enumeration that specifies the destination coordinate space.
srcSpaceCoordinateSpaceMember of the CoordinateSpace enumeration that specifies the source coordinate space.
ptsPoint[]Array of Point structures that represent the points to transform.

See Also