xxxxxxxxxx
function setup() {
createCanvas(750, 750);
background(0);
}
function draw() {
background(0, 0, 0, 10);
stroke(250, 250, 250,);
//noFill();
fill(0, 0, 0,10);
translate(mouseX, mouseY);
rotate(millis()/10);
rectMode(CENTER);
rect(0, 0,100,50);
circle(0, 0, 60);
line(10, 20, 100, 100);
}