xxxxxxxxxx
function setup() {
createCanvas(750, 750);
background(0);
}
function draw() {
stroke(255, 255, 255,10);
fill(255,255,255,10);
translate(mouseX, mouseY);
rotate(millis()/1000);
ellipseMode(CORNER);
ellipse(0, 0, 200, 100);
}