SilverScreen Solid Modeler

ROUND_NODE methods

ROUND_NODE methods

Previous topic Next topic  

ROUND_NODE methods

Previous topic Next topic JavaScript is required for the print function  

 

SilverSharpAPI

 

ROUND_NODE(ROUND_NODE rhs)

ROUND_NODE(string round_path);

 

ROUND_NODE rhs;         // A SilverSharp.ROUND_NODE object

string     round_path;  // A System.String object

 

 




Synopsis

using SilverSharp;

 

The ROUND_NODE constructors create and initialize a SilverSharp.ROUND_NODE object. The first form makes a shallow copy of another SilverSharp.ROUND_NODE object. The second form creates a SilverSharp.ROUND_NODE from a path to a circle, ellipse, or arc primitive.

 

 

Parameters

rhs is a SilverSharp.ROUND_NODE object from which a shallow copy will be made.

 

round_path is a path to a SilverScreen circle, ellipse, or arc primitive.

 

 

Return Value

ROUND_NODE returns a SilverSharp.ROUND_NODE object.

 

 

Remarks

If round_path specifies an invalid path, then the inherited IsEmpty method will return true.

 

 

See Also

ROUND_NODE, Primitive Types

 

 

Example

The following code shows how to construct a SilverSharp.ROUND_NODE object.

 

C# Code

 

 using SilverSharp;

 

 . . .

 

 ROUND_NODE rnd = new ROUND_NODE("circle \\obj1.1");

 

 if ( PRIM_NODE.IsEmpty(rnd) )

    return;