Previous Up Next

26.6.1  Lines and directed lines in the plane

See Section 27.4.1 for lines in space.

The line command returns and draws a directed line. It can take its arguments in four different ways.

  1. Two points.
  2. A point and a slope.
  3. A point and a direction vector.
  4. An equation.

Example

line(0,1+i)

or:

line(1+i,slope=1)

or:

line(1+i,[3,3])

or:

line(y-x=0)
Remark.

To draw a line with an additional argument for color (such as color=blue), this argument must be the third argument. In particular, for a list of two points to specify a line in this command, the list must be turned into a sequence, such as with op. For example, given a list L of two points (possibly the result of a different command) which determines a line, to draw the line blue enter line(op(L),color=blue); entering line(L,color=blue) will result in an error.


Previous Up Next