xxxxxxxxxx
function setup() {
createCanvas(750, 750);
background(0);
}
function draw() {
//background(47,79,79);
background(255, 255, 255, 15)
stroke(0, 0, 0);
//stroke(255, 255, 255, 100); // r, g, b, alpha
noFill();
translate(mouseX, mouseY);
rotate(millis()/1000);
circle(-50, -50, 600); // position x, y, diameter
ellipse(10, 10, 600, 400); // position x, y, width, height
ellipse(-110, -110, 600, 400); // position x, y, width, height
//rect(10, 10, 200, 100); // position x, y, width, height
//rect(-110, -110, 200, 100); // position x, y, width, height
//line(0, 0, mouseX, mouseY);
}