[]
Initializes a new instance of the Matrix class.
public Matrix(double m11, double m12, double m21, double m22, double m31, double m32)
| Type | Name | Description |
|---|---|---|
| double | m11 | The value to assign at row 1 column 1 of the matrix. |
| double | m12 | The value to assign at row 1 column 2 of the matrix. |
| double | m21 | The value to assign at row 2 column 1 of the matrix. |
| double | m22 | The value to assign at row 2 column 2 of the matrix. |
| double | m31 | The value to assign at row 3 column 1 of the matrix. |
| double | m32 | The value to assign at row 3 column 2 of the matrix. |
public Matrix(Matrix3x2 m)
| Type | Name | Description |
|---|---|---|
| Matrix3x2 | m | The source Matrix3x2. |