Generic function
Draws a bezier curve through the specified set of points.
draw-bezier-curve sheet coord-seq #key filled? => ()
draw-bezier-curve* drawable points #key filled? => ()
<boolean>. Default value: #t.
The following arguments are specific to draw-bezier-curve.
<sheet>.
limited(<sequence>, of: <coordinate>).
The following arguments are specific to draw-bezier-curve*.
type-union(<sheet>, <medium>).
limited(<sequence>, of: <point>).
duim-graphics
duim-graphics
Draws a bezier curve on sheet or drawable (depending on the function you use) through the sequence of coordinates given by coord-seq, using the current pen. Dashed lines start dashing from the first point.
If filled? is #t then the bezier-curve will be filled, using the current brush.
The function draw-bezier-curve* is identical to draw-bezier-curve, 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.