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