Box2DX.Common.Mat33.Mat33 C# (CSharp) Метод

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

Construct this matrix using columns.
public Mat33 ( System.Vector3 c1, System.Vector3 c2, System.Vector3 c3 ) : System
c1 System.Vector3
c2 System.Vector3
c3 System.Vector3
Результат System
        public Mat33(Vector3 c1, Vector3 c2, Vector3 c3)
        {
            Col1 = c1;
            Col2 = c2;
            Col3 = c3;
        }