Legacy:Point

From Spherical
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