BEPUutilities.Matrix3x2.Matrix3x2 C# (CSharp) Метод

Matrix3x2() публичный Метод

Constructs a new 3 row, 2 column matrix.
public Matrix3x2 ( float m11, float m12, float m21, float m22, float m31, float m32 ) : 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.
m31 float Value at row 2, column 1 of the matrix.
m32 float Value at row 2, column 2 of the matrix.
Результат Microsoft.Xna.Framework
        public Matrix3x2(float m11, float m12, float m21, float m22, float m31, float m32)
        {
            M11 = m11;
            M12 = m12;
            M21 = m21;
            M22 = m22;
            M31 = m31;
            M32 = m32;
        }