Generic function
Draws an oval with the specified center and radii.
draw-oval drawable center-x center-y x-radius y-radius #key filled? => ()
draw-oval* drawable center x-radius y-radius #key filled? => ()
type-union(<sheet>, <medium>).
<real>.
<real>.
<boolean>. Default value: #t.
The following arguments are specific to draw-oval.
<real>.
<real>.
The following argument is specific to draw-oval*.
<transform>.
duim-graphics
duim-graphics
Draws an oval on drawable with center (center-x,center-y) and radii defined by x-radius and y-radius, using the current pen.
Ovals are similar to ellipses, except that they have straight edges.

If filled? is #t then the oval will be filled, using the current brush.
The function draw-oval* is identical to draw-oval, 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.