RosettaCodeData/Task/Draw-a-pixel/Processing/draw-a-pixel-3.processing
2023-07-01 13:44:08 -04:00

6 lines
113 B
Text

void setup() {
size(320, 240);
loadPixels();
pixels[width*100 + 100] = color(255,0,0);
updatePixels();
}