The CONE Statement
- Last UpdatedJan 07, 2026
- 1 minute read
CONE,<cone_name>,<rad_1>,<rad_2>
/COORDCONE=(<cl_pnt_1>,<cl_pnt_2>);
<cone_name> is the name of the cone and will be assigned the type CONE_3D. The maximum length of <cone_name> is 32 characters.
<rad_1> and <rad_2> are the radii of the bottom and top circles respectively with type DECIMAL.
COORDCONE=(<cl_pnt_1>,<cl_pnt_2>)
<cl_pnt_1> and <cl_pnt_2> are the center line starting and ending points, respectively. They have the type POINT_3D.
Structure:
|
PNT(1:3) |
(POINT_3D) |
|
|
VEC(1:3) |
(VECTOR_3D) |
|
|
BASE |
(DECIMAL) |
|
|
TOP |
(DECIMAL) |
|
|
Example: |
||
|
GET/STRUCTURE=(X,<cone_name>,'PNT',1) |
||
|
/STRUCTURE=(Z,<cone_name>,'VEC',3) |
||
|
/STRUCTURE=(R1,<cone_name>,'BASE') |
||
|
/STRUCTURE=(R2,<cone_name>,'TOP'); |
||