Applies this transform to a specified array of points.

 

   

Syntax
 

[C#]
override Point[] TransformPoints(Point[] points)
override PointF[] TransformPoints(PointF[] points)
override XPoint[] TransformPoints(XPointF points)

 

   

Params
 
Name Description
points The array of points to be transformed.
return The array that was passed in.

 

   

Notes
 

Applies this transform to a specified array of points.

The behavior of this method is the same as that of the System.Drawing.Drawing2D Matrix.TransformPoints function.

 

   

Example