xxxxxxxxxx
18
function setup() {
createCanvas(400, 400);
background(0);
noLoop();
}
function draw() {
for (let i = 0; i < 50; i++) {
let x = random(0, 400);
let y = random(0, 400);
let r = random(2, 25);
let providnost = random(0, 100);
noStroke();
fill(255, providnost);
ellipse(x, y, r);
}
}