This documentation is for the old version. Go to the latest Graphics Mill docs

Matrix.FillFromAffinePoints Method (PointF[], PointF[])

Initializes a Matrix of the affine transform which converts one set of points to another.

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub FillFromAffinePoints ( _
	sourcePoints As PointF(), _
	destinationPoints As PointF() _
)
C#
public void FillFromAffinePoints(
	PointF[] sourcePoints,
	PointF[] destinationPoints
)

Parameters

sourcePoints

Type: System.Drawing.PointF []

An array of 3 source (input) points to transform from.
destinationPoints

Type: System.Drawing.PointF []

An array of 3 destination (output) points to transform source points to.

Remarks

You can also create a matrix of the affine transform which converts one set of points to another one using a static method FromAffinePoints(PointF[], PointF[]).

See Also

Reference