xxxxxxxxxx
17
function setup() {
createCanvas(windowWidth, windowHeight);
background(220, 20, 120);
noLoop();
noStroke();
}
function draw() {
for (let y = 0; y < height; y++) {
for (let x = 0; x < width; x++) {
let c = random(0, 255);
fill(c);
rect(x, y, 1, 1);
}
}
}