xxxxxxxxxx
23
let eDiam = 40;
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220, 20, 120);
for (let x = eDiam / 2; x < width + eDiam; x += eDiam) {
for (let y = eDiam / 2; y < height + eDiam; y += eDiam) {
let redRandom = random(0, 255);
let greenRandom = random(0, 255);
let blueRandom = random(0, 255);
fill(redRandom, greenRandom, blueRandom);
ellipse(x, y, eDiam, eDiam);
}
}
}