BEPUutilities.Matrix2x3.Matrix2x3 C# (CSharp) Method

Matrix2x3() public method

Constructs a new 2 row, 2 column matrix.
public Matrix2x3 ( float m11, float m12, float m13, float m21, float m22, float m23 ) : Microsoft.Xna.Framework
m11 float Value at row 1, column 1 of the matrix.
m12 float Value at row 1, column 2 of the matrix.
m13 float Value at row 1, column 3 of the matrix.
m21 float Value at row 2, column 1 of the matrix.
m22 float Value at row 2, column 2 of the matrix.
m23 float Value at row 2, column 3 of the matrix.
return Microsoft.Xna.Framework
        public Matrix2x3(float m11, float m12, float m13, float m21, float m22, float m23)
        {
            M11 = m11;
            M12 = m12;
            M13 = m13;
            M21 = m21;
            M22 = m22;
            M23 = m23;
        }