BEPUutilities.Matrix2x2.ToString C# (CSharp) Méthode

ToString() public méthode

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