2013

Table Of Contents
Pi radians is equal to 180 degrees, and 100 grads is equal to 90 degrees.
See also:
Use the Command Prompt Calculator
Use Points and Vectors
Both points and vectors are pairs or triples of real numbers. A point defines a
location in space, but a vector defines a direction (or translation) in space.
Some CAL functions, such as pld and plt, return a point. Other functions,
such as nor and vec, return a vector.
Formatting Points and Vectors
A point or vector is a set of three real expressions enclosed in brackets ([ ]):
[r1,r2,r3]
The notation p1, p2, and so forth designates points. The notation v1, v2, and
so forth designates vectors. In drawings, points are displayed as dots, and
vectors are displayed as lines with arrows.
CAL supports points expressed in all formats.
Point formats
Point formatCoordinate system
[dist<angle]Polar
[dist<angle,z]Cylindrical
[dist<angle1<angle2]Spherical
Uses the @ prefix [@x,y,z]Relative
Uses the * prefix [*x,y,z]WCS (instead of UCS)
You can omit the following components of a point or vector: coordinate values
of zero and a comma immediately preceding the right bracket (]).
C Commands | 169