xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
//}
/*function draw() {
// ellipse(mouseX, mouseY, 20, 20);
createCanvas(windowWidth, windowHeight);
background(100);
*/
for(let x = 0; x < 10000; x = x+2){
let u = random(0, width);
let t = random(0, height);
let s = random(0, 500);
let r = random(0, 255);
let g = random(0, 255);
let b = random(0, 255);
strokeWeight(5);
//stroke(0, 200);
stroke(g-70, b-70, r-70, 255);
fill(r, g, b, 120);
ellipse(u, t, s, s);
}
}