xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(125, 0, 150);
}
function draw() {
background(125, 0, 150, 0);
if(mouseIsPressed) {
stroke(255);
fill(225);
translate(mouseX,mouseY);
rotate(radians(random(180)));
ellipse(0, 0, random(10), 10);
}
}