xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
noStroke();
for(let i = 0; i < 100; i++){
let x = random(width/3);
let y = random(height);
fill(random(200, 255), random(100,200), random(0,100), 127);
ellipse(x, y, 100, 100);
}
for(let i = 0; i < 100; i++){
let x = random(width/3)+width/3;
let y = random(height);
fill(random(50, 150), random(200,255), random(50,150), 127);
ellipse(x, y, 100, 100);
}
for(let i = 0; i < 100; i++){
let x = random(width/3)+width/3+width/3;
let y = random(height);
fill(random(0, 100), random(100,200), random(200,255), 127);
ellipse(x, y, 100, 100);
}
}