xxxxxxxxxx
17
let maxRadius = 100;
let numCircles = 10;
function setup() {
createCanvas(400, 400);
}
function draw() {
background('rgb(193,214,240)');
noFill()
if(mouseIsPressed) {
for(i=0; i< numCircles; i++) {
ellipse(width/2, height/2, i) }
}
}