BEPUutilities.Matrix2x2.ToString C# (CSharp) 메소드

ToString() 공개 메소드

Creates a string representation of the matrix.
public ToString ( ) : string
리턴 string
        public override string ToString()
        {
            return "{" + M11 + ", " + M12 + "} " +
                   "{" + M21 + ", " + M22 + "}";
        }