Previous Up Next

14.5.5  Parallel lines and planes in space: parallel

See Section 13.7.5 for parallel lines in the plane.

The parallel command can take its arguments in different ways. It returns and draws a line or plane depending on the arguments.

A point and a line.


Example.
Input:

parallel(point(1,1,1),line(point(0,0,0),point(0,0,1)))

Output:


Two non-parallel lines.


Example.
Input:

parallel(line(point(1,0,0),point(0,1,0)),line(point(0,0,0),point(0,0,1)))

Output:


A point and a plane.


Example.
Input:

parallel(point(0,0,0),plane(point(1,0,0),point(0,1,0),point(0,0,1)))

Output:


A point and two non-parallel lines.


Example.
Input:

parallel(point(1,1,1),line(point(0,0,0),point(0,0,1)),line(point(1,0,0),point(0,1,0)))

Output:


Previous Up Next