Constructs an identity matrix.
Syntax

[C#]

Matrix();
Matrix(double m11, double m12, double m21, double m22, double dx, double dy);
Matrix(Rectangle rect, Point[] pts);
Matrix(RectangleF rect, PointF[] pts);

[Visual Basic]

Sub New()
Sub New(m11 As Double, m12 As Double, m21 As Double, m22 As Double, dx As Double, dy As Double)
Sub New(rect As Rectangle, pts As Point())
Sub New(rect As RectangleF, pts As PointF())
Params
Name Description
m11 M11 coefficient.
m12 M12 coefficient.
m21 M21 coefficient.
m22 M22 coefficient.
dx Dx coefficient.
dy Dy coefficient.
rect The source rectangle.
pts The points it should map to.
points The points it should map to.
Notes

None.

Example

None.