xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255, 0, 180);
noStroke();
fill(0);
}
function draw() {
if(mouseIsPressed) {
ellipse(mouseX, mouseY, 40, 40);
}
}
function mouseReleased() {
// Clear the canvas when the mouse is released
background(255, 0, 180);
}