gb.display.drawCircleHelper

From Gamebuino Wiki
Revision as of 2016-11-30T19:24:35 by Yawn (talk | contribs) (Parameters: corrected typo)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Description

Draws part of 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.drawCircleHelper(x, y, r, corner);

Parameters

  • x: horizontal coordinate of the centre of the circle.
  • y: vertical coordinate of the centre of the circle.
  • r: radius of the circle.
  • corner: which corner to draw -
    • 1: top left
    • 2: top right
    • 4: bottom right
    • 8: bottom left

Returns

none

Example

See also