Matrix3x2(Single, Single, Single, Single, Single, Single) Constructor
Definition
Creates a 3x2 matrix from the specified components.
public:
Matrix3x2(float m11, float m12, float m21, float m22, float m31, float m32);
public Matrix3x2 (float m11, float m12, float m21, float m22, float m31, float m32);
new System.Numerics.Matrix3x2 : single * single * single * single * single * single -> System.Numerics.Matrix3x2
Public Sub New (m11 As Single, m12 As Single, m21 As Single, m22 As Single, m31 As Single, m32 As Single)
Parameters
- m11
- Single
The value to assign to the first element in the first row.
- m12
- Single
The value to assign to the second element in the first row.
- m21
- Single
The value to assign to the first element in the second row.
- m22
- Single
The value to assign to the second element in the second row.
- m31
- Single
The value to assign to the first element in the third row.
- m32
- Single
The value to assign to the second element in the third row.