SilverScreen Solid Modeler

EDGE_NODE

EDGE_NODE

Previous topic Next topic  

EDGE_NODE

Previous topic Next topic JavaScript is required for the print function  

SilverSharpAPI

 

SilverSharp.EDGE_NODE

 

Structure

The SilverSharp.EDGE_NODE object stores information relevant to an edge. An edge is a line segment that may-or-may-not be shared by multiple line primitives in an object. It cannot be created directly by a SilverSharp application.

 

 

 

C# Code

 

 class EDGE_NODE

    {

    readonly uint EdgeNumber;

       

    property WidthStyle edge_width_style { get; }

    property uint       pt1 { get; }

    property uint       pt2 { get; }

    property SS_RGB     edge_rgb { get; }

    property uint       refs { get; }

 

    string ToString();

    };

 

 

 

Properties

Name

Description

EdgeNumber

A read-only number that uniquely identifies the edge within an object. It is used to identify an edge in a command.

edge_width_style

A read-only property to get edge width and linestyle information

pt1

The vertex number of the first end-point

pt2

The vertex number of the second end-point

edge_rgb

The color of the edge

refs

The number of lines referencing the edge in the parent object

 

 

Members

Name

Description

ToString

Formats the EDGE_NODE as a string

 

 

See Also

LINE_NODE, EdgeList, OBJECT_NODE