xxxxxxxxxx
26
let gfx;
function setup() {
createCanvas(640, 480);
background(20);
pixelDensity(1);
gfx = createGraphics(width, height);
gfx.loadPixels();
for (let y = 0; y < height; y++) {
for (let x = 0; x < width; x++) {
gfx.set(x, y, color(random(255)));
}
}
gfx.updatePixels();
}
function draw() {
gfx.loadPixels();
for (let i = 0; i < 20; i++)
gfx.set(int(random(width)), int(random(height)), color(255,0,255));
gfx.updatePixels();
image(gfx, 0, 0);
}