xxxxxxxxxx
29
// 9/23/20 tale
function setup() {
createCanvas(600, 600);
noLoop();
}
function draw() {
background("#6DC1FA");
let snow = "#AADDF9";
let n = random(5, 12);
let x;
let y;
let s;
noStroke();
fill(snow);
for (var i = 0; i < n; i++) {
x = random(50, width - 50);
y = random(50, height - 50);
s = random(20, 70);
ellipse(x, y, s, s);
}
}
function mousePressed() {
draw();
}