Legacy:Point

From Spherical
Revision as of 21:08, 4 June 2013 by Apollolux (talk | contribs) (added navbox)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Colors a single pixel on the framebuffer.

Usage

Point(x, y, color);


Notes

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

Examples

Draw a point on the screen:

var Red = CreateColor(255, 0, 0, 255);
Point(16, 16, Red);

See also

API:Video/navbox