System::Drawing::Drawing2D::Matrix::Matrix constructor
Contents
[
Hide
]Matrix::Matrix() constructor
Constructs a new instance of Matrix class that represents an identity matrix.
System::Drawing::Drawing2D::Matrix::Matrix()
See Also
- Class Matrix
- Namespace System::Drawing::Drawing2D
- Library Aspose.PDF for C++
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)
See Also
- Class Rectangle
- Typedef ArrayPtr
- Class Point
- Class Matrix
- Namespace System::Drawing::Drawing2D
- Library Aspose.PDF for C++
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
- Class RectangleF
- Typedef ArrayPtr
- Class PointF
- Class Matrix
- Namespace System::Drawing::Drawing2D
- Library Aspose.PDF for C++
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)
Parameter | Type | Description |
---|---|---|
m11 | float | The value of the 1-st row 1-st column |
m12 | float | The value of the 1-st row 2-nd column |
m21 | float | The value of the 2-nd row 1-st column |
m22 | float | The value of the 2-nd row 2-nd column |
dx | float | The value of the 3-rd row 1-st column |
dy | float | The value of the 3-rd row 2-nd column |
See Also
- Class Matrix
- Namespace System::Drawing::Drawing2D
- Library Aspose.PDF for C++