SilverScreen Solid Modeler

SS_XYZ method

SS_XYZ method

Previous topic Next topic  

SS_XYZ method

Previous topic Next topic JavaScript is required for the print function  

SilverSharpAPI

 

SS_XYZ(double xval, double yval, double zval);

 

double xval;  // A double-precision floating-point x-coordinate value

double yval;  // A double-precision floating-point y-coordinate value

double zval;  // A double-precision floating-point z-coordinate value

 

 




Synopsis

using SilverSharp;

 

The SS_XYZ constructor creates a SilverSharp.SS_XYZ object

 

 

Parameters

xval is a value for the x-coordinate

yval is a value for the y-coordinate

zval is a value for the z-coordinate

 

 

Return Value

none

 

 

See Also

SS_XYZ

 

 

Example

The following code will construct a SilverSharp.SS_XYZ object and initialize it to 1,2,3:

 

C# Code

 

 using SilverSharp;

 

 . . .

 

 SS_XYZ pt = new SS_XYZ(1.0, 2.0, 3.0);