Edit

Share via


Matrix.VectorTransformPoints Method

Definition

Overloads

VectorTransformPoints(Point[])

Multiplies each vector in an array by the matrix. The translation elements of this matrix (third row) are ignored.

VectorTransformPoints(ReadOnlySpan<Point>)

VectorTransformPoints(Point[])

Source:
Matrix.cs
Source:
Matrix.cs
Source:
Matrix.cs
Source:
Matrix.cs
Source:
Matrix.cs

Multiplies each vector in an array by the matrix. The translation elements of this matrix (third row) are ignored.

public:
 void VectorTransformPoints(cli::array <System::Drawing::Point> ^ pts);
public:
 void VectorTransformPoints(... cli::array <System::Drawing::Point> ^ pts);
public void VectorTransformPoints (System.Drawing.Point[] pts);
public void VectorTransformPoints (params System.Drawing.Point[] pts);
member this.VectorTransformPoints : System.Drawing.Point[] -> unit
Public Sub VectorTransformPoints (pts As Point())
Public Sub VectorTransformPoints (ParamArray pts As Point())

Parameters

pts
Point[]

An array of Point structures that represents the points to transform.

Applies to

VectorTransformPoints(ReadOnlySpan<Point>)

Source:
Matrix.cs
public:
 void VectorTransformPoints(ReadOnlySpan<System::Drawing::Point> pts);
public void VectorTransformPoints (scoped ReadOnlySpan<System.Drawing.Point> pts);
member this.VectorTransformPoints : ReadOnlySpan<System.Drawing.Point> -> unit
Public Sub VectorTransformPoints (pts As ReadOnlySpan(Of Point))

Parameters

Applies to