SilverScreen Solid Modeler

SS_TAG        

SS_TAG        

Previous topic Next topic  

SS_TAG        

Previous topic Next topic JavaScript is required for the print function  

SilverScreenAPI

 

SS_TAG

 

 

Structure

A data type that holds tag properties

 

 

 struct  SS_TAG

    {

    SS_XYZ xyz;

    double value;

    int    type;

    char   text[52];

    } ;

 

 


Members

Member

Description

xyz

The 3D point data stored with the tag if 'type' is T_XYZ

value

The double-precision floating point value stored with the tag if 'type' is T_VALUE.

type

Describes the type of data stored with the tag. It's meaning is as follows:

text

A null-terminated text string if the tag of 'type' is T_TEXT.

 

 

Remarks

The string in 'text' will be truncated if the text associated with the tag exceeds the bounds of the array. Developers must use TAG_NODEs to access text tags with longer strings, and in fact are encouraged to use TAG_NODEs rather than SS_TAGs in all new code.

 

 

See Also

fetch_tag

 

Header

silver.h