xxxxxxxxxx
function setup() {
createCanvas(400, 400);
}
function draw() {
background('gray');
let rx = random(0, width);
let ry = random(height)
circle(rx, ry, 200);
noLoop(); // shuts off the loop
}
function mousePressed(){
loop(); // turns on the loop
}