Legacy:Point

From Spherical
Revision as of 19:34, 20 May 2013 by Apollolux (talk | contribs) (Reformat for new convention)
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