SilverScreen Solid Modeler

ToString method

ToString method

Previous topic Next topic  

ToString method

Previous topic Next topic JavaScript is required for the print function  

SilverSharpAPI

 

string ToString();

 

 

 

 

 




Synopsis

using SilverSharp;

 

The ToString method formats a SilverSharp.MATRIX object as a string.

 

 

Parameters

none

 

 

Return Value

MATRIX.ToString method returns a System.String object

 

 

Remarks

ToString overrides the standard System.Object.ToString method. For an identity matrix, the string will look like the following (including carriage-returns):

 

[1 0 0 0]

[0 1 0 0]

[0 0 1 0]

[0 0 0 1]

 

 

See Also

MATRIX