gb.display.fillCircle

From Gamebuino Wiki
Revision as of 2014-08-18T23:02:28 by Vraister (talk | contribs) (Parameters: changed w to r)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Description

Draws and fills 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 parts will not be rendered.

Syntax

gb.display.fillCircle(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