Matrix()

Matrix::Matrix() constructor

Constructs a new instance of Matrix class that represents an identity matrix.

System::Drawing::Drawing2D::Matrix::Matrix()

Matrix::Matrix(float, float, float, float, float, float) constructor

Constructs a new instance of Matrix class and initializes it with the specified values.

System::Drawing::Drawing2D::Matrix::Matrix(float m11, float m12, float m21, float m22, float dx, float dy)

Arguments

ParameterTypeDescription
m11floatThe value of the 1-st row 1-st column
m12floatThe value of the 1-st row 2-nd column
m21floatThe value of the 2-nd row 1-st column
m22floatThe value of the 2-nd row 2-nd column
dxfloatThe value of the 3-rd row 1-st column
dyfloatThe value of the 3-rd row 2-nd column

Matrix::Matrix(const Rectangle&, const ArrayPtr<Point>&) constructor

Constructs a new instance of the Matrix class to the geometric transform defined by the specified rectangle and array of points.

System::Drawing::Drawing2D::Matrix::Matrix(const Rectangle &rect, const ArrayPtr<Point> &plgpts)

Matrix::Matrix(const RectangleF&, const ArrayPtr<PointF>&) constructor

Constructs a new instance of the Matrix class to the geometric transform defined by the specified rectangle and array of points.

System::Drawing::Drawing2D::Matrix::Matrix(const RectangleF &rect, const ArrayPtr<PointF> &plgpts)

See Also