[]
Initializes a new instance of the Matrix3x2 struct.
public Matrix3x2(float value)
Public Sub New(value As Single)
| Type | Name | Description |
|---|---|---|
| float | value | The value that will be assigned to all components. |
Initializes a new instance of the Matrix3x2 struct.
public Matrix3x2(float M11, float M12, float M21, float M22, float M31, float M32)
Public Sub New(M11 As Single, M12 As Single, M21 As Single, M22 As Single, M31 As Single, M32 As Single)
| Type | Name | Description |
|---|---|---|
| float | M11 | The value to assign at row 1 column 1 of the matrix. |
| float | M12 | The value to assign at row 1 column 2 of the matrix. |
| float | M21 | The value to assign at row 2 column 1 of the matrix. |
| float | M22 | The value to assign at row 2 column 2 of the matrix. |
| float | M31 | The value to assign at row 3 column 1 of the matrix. |
| float | M32 | The value to assign at row 3 column 2 of the matrix. |
Initializes a new instance of the Matrix3x2 struct.
public Matrix3x2(float[] values)
Public Sub New(values As Single())
| Type | Name | Description |
|---|---|---|
| float[] | values | The values to assign to the components of the matrix. This must be an array with six elements. |
| Type | Condition |
|---|---|
| ArgumentNullException | Thrown when |
| ArgumentOutOfRangeException | Thrown when |