Operator \parallel is a geometrical operator. It is used to define a line parallel to another meeting a particular point. It takes the following parameters:
This operator should only appear within a step block.
v1 = \line_to_line(b, a, d, [a, d]); % bisector definition v2 = \parallel([d, b],v1, [a, b]); % found other extermity \valley_fold(v1, v2); % make valley fold line
RETURN_VERTEX = \parallel(EDGE, VERTEX, LIMIT_EDGE);
EDGE Description : Indicates the edge reference to build its parallel line. Type : Edge, couple of vertex identifiers. Allowed values : Any couple of vertex identifiers already. VERTEX Description : Indicates the vertex origin of the parallel line. Type : Symbol, vertex identifier. Allowed values : Any vertex identifier previously defined. LIMIT_EDGE Description : Indicates the new parallel line limit. Type : Edge, couple of vertex identifiers. Allowed values : Any couple of vertex identifiers already defined in a previous step.
RETURN_VERTEX Description : New vertex intersection of parallel line and LIMIT_EDGE. Type : Symbol, vertex identifier. Allowed values : Any vertex identifier not already defined.