xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(70, 222, 193);
}
function draw() {
ellipse(mouseX, mouseY, 100, 100);
noFill();
stroke(255, 255, 255);
strokeWeight(5)
angleMode(DEGREES);
rectMode(CENTER);
translate(mouseX, mouseY);
rotate( random(0, 90) );
rect(0, 200, 200, 50)
}