Curve Link Operator
Connects elements to form a curve.
Signatures
- elmt1 -> elmt2
- curve1 ->= elmt1
Details
Binary operators that combine certain curve elements to form a combined curve.
The first signature defines the connection between to elements to form a curve. This operator is left-associative. The second signature expands curve1 by the element on the right. Elements elmt1 and elmt2 can be of type curveor a vector point.
Example
curve triangle
triangle = <[1.0, 1.0]> -> <[2.0, 1.0]>
triangle ->= <[1.5, 2.0]>
triangle = triangle -><-
make extrusion( triangle, <[0.0, 0.0, 1.0]> )
Return value
A curve that results from the connection.