Generic function
Draws a circle with the specified center and radius.
draw-circle drawable center-x center-y radius #key start-angle end-angle filled? => ()
draw-circle* drawable center radius #key start-angle end-angle filled? => ()
type-union(<sheet>, <medium>).
<real>.
false-or(<real>).
false-or(<real>).
<boolean>. Default value: #t.
The following arguments are specific to draw-circle.
<real>.
<real>.
The following argument is specific to draw-circle*.
<transform>.
duim-graphics
duim-graphics
Draws a circle on drawable with center (center-x,center-y) and a radius of radius pixels, using the current pen.
The start-angle and end-angle arguments let you draw a sector of a circle rather than a whole circle.
If filled? is #t, then the circle will be filled, using the current brush.
The function draw-circle* is identical to draw-circle, 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.