Fusion.Core.Mathematics.Matrix3x2.Matrix3x2 C# (CSharp) Метод

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

Initializes a new instance of the Matrix3x2 struct.
public Matrix3x2 ( float value ) : System
value float The value that will be assigned to all components.
Результат System
        public Matrix3x2(float value)
        {
            M11 = M12 = 
            M21 = M22 = 
            M31 = M32 = value; 
        }

Same methods

Matrix3x2::Matrix3x2 ( float M11, float M12, float M21, float M22, float M31, float M32 ) : System