[]
Initializes a new instance of the Matrix class.
public Matrix(double m11, double m12, double m21, double m22, double m31, double m32)
Public Sub New(m11 As Double, m12 As Double, m21 As Double, m22 As Double, m31 As Double, m32 As Double)
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)
Public Sub New(m As Matrix3x2)