paintutils.drawPixel

From ComputerCraft Wiki
Revision as of 00:38, 12 July 2013 by AfterLifeLochie (Talk | contribs) (Int -> {{type|number}})

Jump to: navigation, search


Grid Redstone.png  Function paintutils.drawPixel
Draw a pixel on the screen
Syntax paintutils.drawPixel(int x, number y, number colour)
Returns nil
Part of ComputerCraft
API paintutils

Examples

Grid paper.png  Example
This code will draw a red pixel at the position (10, 8)
Code
image = paintutils.drawPixel(10, 8, colours.red)