Legacy:Rectangle

From Spherical
Revision as of 00:13, 4 June 2013 by Radnen (talk | contribs) (Created initial page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Draws a rectangle to screen at location x, y, with a certain width, height, and color.

Usage

Rectangle(x, y, width, height, color);


  • x the X coordinate, start of rectangle
  • y the Y coordinate, start of rectangle
  • width the width of rectangle
  • height the height of the rectangle
  • color a color object created with CreateColor

Notes

Remember that FlipScreen must be called before any drawing is visible on the screen.

Examples

Fill the screen with red. Mwahaha!

var Red = CreateColor(255, 0, 0);
Rectangle(0, 0, GetScreenWidth(), GetScreenHeight(), Red);

See also