COORD Statement (GPL)
Syntax
COORD: <coord>
<coord>. A valid coordinate type or transformation function.
Description
Specifies a coordinate system for the graph. You can also embed
coordinate systems or wrap a coordinate system in a transformation.
When transformations and coordinate systems are embedded in each other,
they are applied in order, with the innermost being applied first.
Thus, mirror(transpose(rect(1,2)))
specifies that a 2-D rectangular coordinate system is transposed
and then mirrored.
Examples
COORD: polar.theta()
COORD: rect(dim(1,2,3))
COORD: rect(dim(2), polar.theta(dim(1)))
COORD: transpose()