BEPUutilities.Matrix2x2.Matrix2x2 C# (CSharp) Method

Matrix2x2() public method

Constructs a new 2 row, 2 column matrix.
public Matrix2x2 ( float m11, float m12, float m21, float m22 ) : 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.
m21 float Value at row 2, column 1 of the matrix.
m22 float Value at row 2, column 2 of the matrix.
return Microsoft.Xna.Framework
        public Matrix2x2(float m11, float m12, float m21, float m22)
        {
            M11 = m11;
            M12 = m12;
            M21 = m21;
            M22 = m22;
        }