Search
GdiGraphics.TransformPoints Method (CoordinateSpace, CoordinateSpace, PointF[])
See Also
 





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

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

public virtual void TransformPoints (
    CoordinateSpace destSpace,
    CoordinateSpace srcSpace,
    PointF[] pts
)

Visual Basic  Copy Code

Public Overridable Sub TransformPoints( _
    destSpace As CoordinateSpace, _
    srcSpace As CoordinateSpace, _
    pts() As PointF _
)

 Parameters

destSpace
Member of the .NET CoordinateSpace enumeration that specifies the destination coordinate space.
srcSpace
Member of the .NET CoordinateSpace enumeration that specifies the source coordinate space.
pts
An array of .NET PointF structures that represent the points to transform.

 See Also