The CONNECTIONPOINT Statement
- Last UpdatedJan 20, 2023
- 1 minute read
CONNECTIONPOINT,<conn_name>,<conn_type>,<conn_no>,
<conn_pnt>,<conn_vect>,<conn_desc>;
<conn_name> is the name of the connection point and will be assigned the type CONNECTIONPOINT_3D. The maximum length of <conn_name> is 32 characters.
<conn_type> is the connection type of type INTEGER. Only types between 1 and 9 are valid.
<conn_no> is the connection number of type INTEGER. Only numbers between 1 and 199 are valid.
<conn_pnt> is the connection point defining the position. It has the type POINT_3D.
<conn_vect> is the connection vector defining the direction. It has the type VECTOR_3D.
<conn_desc> is the connection description of type STRING. Maximum length of <conn_desc> is 100 characters.
Structure:
|
CONTYPE |
(INTEGER) |
|
|
CONNUMBER |
(INTEGER) |
|
|
PNT(1:3) |
(DECIMAL) |
|
|
VEC(1:3) |
(DECIMAL) |
|
|
DESCR |
(STRING) |
|
|
Example: |
||
|
GET/STRUCTURE=(T,<conn_name>,'CONTYPE') |
||
|
/STRUCTURE=(N,<conn_name>,'CONNUMBER') |
||
|
/STRUCTURE=(X,<conn_name>,'PNT',1) |
||
|
/STRUCTURE=(Y,<conn_name>,'VEC','Z') |
||
|
/STRUCTURE=(D,<conn_name>,'DESCR'); |
||