xxxxxxxxxx
function setup() {
createCanvas(750, 750);
background(0);
}
function draw() {
background(0, 255, 250, 1);
stroke(255, 155, 0);
fill(255, 255, 255, 100);
translate(mouseX, mouseY);
rotate(millis()/100);
rectMode(CENTER);
ellipse(0, 0, 20, 200);
}