Difference between revisions of "Gb.display.fillCircle"

From Gamebuino Wiki
Jump to: navigation, search
(Creation)
 
m (Parameters: changed w to r)
 
(One intermediate revision by one other user not shown)
Line 3: Line 3:
 
== Description ==
 
== Description ==
 
Draws and fills a circle at a specified location. The color used is defined using <code>[[gb.display.setColor]]()</code>.
 
Draws and fills a circle at a specified location. The color used is defined using <code>[[gb.display.setColor]]()</code>.
If you specify values that cause parts of the circle to be off screen, then they will not be rendered.
+
If you specify values that cause parts of the circle to be off screen, then parts will not be rendered.
  
 
== Syntax ==
 
== Syntax ==
Line 11: Line 11:
 
* x: horizontal coordinate of the centre of the circle.
 
* x: horizontal coordinate of the centre of the circle.
 
* y: vertical coordinate of the centre of the circle.  
 
* y: vertical coordinate of the centre of the circle.  
* w: radius of the circle.
+
* r: radius of the circle.
  
 
== Returns ==
 
== Returns ==

Latest revision as of 2014-08-18T23:02:28

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