Previous Up Next

27.9.1  Circles in space

See Section 26.10.1 for circles in the plane.

The circle command returns and draws a circle. It can take its arguments in two different ways.

  1. Three points.
  2. Two points and a vector.

Examples

circle(point(0,0,1),point(0,1,0),point(0,2,2))
circle(point(0,0,1),vector(0,1,0),point(0,2,2))

Previous Up Next