Matrix Constructor

Initializes a new instance of the Matrix class.

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

Syntax

C#
public Matrix()

Remarks

This constructor creates the identity matrix. The identity matrix has the following structure: all elements at the main diagonal are equal to 1. All other elements are equal to 0. To check whether the current instance of this class is an identify matrix, use the IsIdentity property.

You can also create a matrix from the points which specify input and output quadrangles. Use CreateFromAffinePoints(PointF[], PointF[]) and CreateFromProjectivePoints(PointF[], PointF[]) static methods for this.

See Also

Reference