The POINT_3D Statement
- Last UpdatedJan 20, 2023
- 1 minute read
POINT_3D,<pnt_name>,<x>,<y>,<z>;
<pnt_name> is the name of the point and has the type POINT_3D. The maximum length of <pnt_name> is 32 characters.
<x>, <y> and <z> are the x, y and z coordinates of the point, all with type DECIMAL.
If only one of the coordinates of a previously defined point shall be changed, the others are simply omitted.
Structure:
|
PNT(1:3) |
(DECIMAL) |
|
|
Example: |
||
|
GET/STRUCTURE=(X,<pnt_name>,'PNT','X') |
||
|
/STRUCTURE=(Y,<pnt_name>,'PNT',2) |
||
|
/STRUCTURE=(Z,<pnt_name>,'PNT','Z'); |
||