SilverScreen Solid Modeler

Clear method

Clear method

Previous topic Next topic  

Clear method

Previous topic Next topic JavaScript is required for the print function  

SilverSharpAPI

 

void Clear();

 

 

 

 

 




Synopsis

using SilverSharp;

 

The Clear method sets all 3 components of a 3D point to 0.

 

 

Parameters

none

 

 

Return Value

none

 

 

See Also

SS_XYZ

 

 

Example

The following code creates a 3D point with the location 5,2,3, then clears it to 0,0,0:

 

C# Code

 

 using SilverSharp;

 

 . . .

 

 SS_XYZ p1 = new SS_XYZ(5, 2, 3);

 

 p1.Clear();