Previous Up Next

13.7.1  Lines and directed lines in the plane: line

See Section 14.5.1 for lines in space.

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

Two points:


A point and a slope.


A point and a direction vector.


An equation.


Example.
Input:

line(0,1+i)

or:

line(1+i,slope=1)

or:

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

or:

line(y - x = 0)

Output:


Warning: 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