Generic function
Draws a series of lines between the specified sequence of points.
draw-lines drawable coord-seq => ()
draw-lines* drawable points => ()
The following argument is specific to draw-lines.
limited(<sequence>, of: <coordinate>).
The following argument is specific to draw-lines*.
limited(<sequence>, of: <point>).
duim-graphics
duim-graphics
Draws a series of lines on drawable between the specified sequence of points, using the current pen. Dashed lines start dashing from the first point of each line.
The function draw-lines* is identical to draw-line, except that it passes composite objects, rather than separate coordinates, in its arguments. You should be aware that using this function may lead to a loss of performance.
draw-lines(medium,
vector(100, 150,
200, 250,
300, 350,
400, 450));