xxxxxxxxxx
function setup() {
createCanvas(750, 750);
background(0);
}
function draw() {
//stroke(250, 250, 250,);
//noFill();
fill(250, 250, 0, 10);
translate(mouseX, mouseY);
rotate(millis()/1000);
ellipseMode(CENTER);
circle(0, 0, 200);
ellipse(0, 0, 100, 150); // position x, y, width, height
}