Previous Up Next

27.5.1  Planes in space

The plane command draws and returns a plane. It can take its arguments in three different ways.

  1. Three points.
  2. A point and a line.
  3. An equation.

Example

plane(point(0,0,5),point(0,5,0),point(0,0,5))

or:

plane(point(0,0,5),line(point(0,5,0),point(0,0,5)))

or:

plane(x+y+z=5)

Previous Up Next