BEPUutilities.Matrix2x2.ToString C# (CSharp) Method

ToString() public method

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