Generic function
Draws a line between the specified points.
draw-line drawable x1 y1 x2 y2 => ()
draw-line* drawable point1 point2 => ()
The following arguments are specific to draw-line.
<real>.
<real>.
<real>.
<real>.
The following arguments are specific to draw-line*.
<transform>.
<transform>.
duim-graphics
duim-graphics
Draws a line on drawable between (x1, y1) and (x2,y2), using the current pen. Dashed lines start dashing from the first point.
The function draw-line* 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.