VECTOR
Vectors have both magnitude and direction. They are often used to specify the direction in geometry application as well as the motion of the cutter.
By x, y, z Components
Syntax is
<symbol> = VECTOR/ x1, y1, z1
V1 = VECTOR/ 62,63,0
This definition generates a vector from the origin of the co-ordinate system.
By Two Points
Syntax is
<symbol> = VECTOR/ x1, y1, z1, x2, y2, z2
V1 = VECTOR / 20, 24, 0, 81, 87, 0
When a vector is defined by the co-ordinate values, all the components need to be mentioned without omission.
By Two Points
Syntax is
<symbol> = VECTOR/ point1, point2
V1 = VECTOR/ P2, P1