gb.display.drawCircle

From Gamebuino Wiki
Jump to: navigation, search

Description

Draws a 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.
  • r: radius of the circle.

Returns

none

Example

See also