drawCircle(cx: Number, cy: Number, r: Number, drawFill: Boolean, drawStroke: Boolean);
cx. X coordinate of the circle center.
cy. Y coordinate of the circle center.
r. Circle radius.
drawFill. It determines whether circle is filled. If the parameter is set to True, circle is filled.
drawStroke. It determines whether circle borders are rendered. If the parameter is set to True, borders are rendered.
The drawCircle method draws a circle on the canvas.
The circle is displayed on the canvas after calling the Canvas.flush method.
The example of method use is given in description of the Canvas.drawPoly method.
See also: