gb.display.drawCircle
From Gamebuino Wiki
Description
Draws circle at a specified location. The color used is defined using gb.display.setColor()
.
If you specify values that cause parts of the circle to be off screen, then they will not be rendered.
Syntax
gb.display.drawCircle(x, y, r);
Parameters
- x: horizontal coordinate of the centre of the circle.
- y: vertical coordinate of the centre of the circle.
- w: radius of the circle.
Returns
none