paintutils.drawPixel
From ComputerCraft Wiki
Function paintutils.drawPixel | |
Draw a pixel on the screen | |
Syntax | paintutils.drawPixel(int x, int y, colour colour) |
Returns | To complete |
Part of | ComputerCraft |
API | paintutils |
Examples
Example | |
This code will draw a pixel in red colour at the position (10, 8) | |
Code |
image = paintutils.drawPixel(10, 8, colour.red) |