gb.display.drawFastVLine

From Gamebuino Wiki
Revision as of 2014-06-24T18:31:27 by Rodot (talk | contribs) (Created page with "{{lowercase}} __NOTOC__ == Description == Draws a vertical line of a given length starting from a given point. The color used is defined using <code>gb.display.setColor()<...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Description

Draws a vertical line of a given length starting from a given point. The color used is defined using gb.display.setColor().

Syntax

gb.display.drawFastVLine(x, y, h);

Parameters

  • x: horizontal coordinate of the starting point. Should be between 0 (left of the display) and LCDWIDTH (right of the display)
  • y: vertical coordinate of the starting point. Should be between 0 (top of the display) and LCDHEIGHT (bottom of the display)
  • h: length (height) of the line

Returns

none

Example

See also