xxxxxxxxxx
function setup() {
createCanvas(750, 750);
background(250);
}
function draw() {
//background(0, 0, 0);
//background(0, 0, 0, 5); // r, g, b, alpha
noStroke();
stroke(47, 207, 209);
//stroke(255, 255, 255, 100); // r, g, b, alpha
noFill();
//fill(255, 255, 255, 110);
angleMode(DEGREES);
rectMode(CENTER);
translate(mouseX, mouseY);
//rotate(PI/5.0);
rotate( -millis()/5 );
//point(0, 0);
scale(0.3, 1.2);
circle(0, 0, 100); // position x, y, diameter
//ellipse(0, 0, 350, 200); // position x, y, width, height
//rect(100, 0, 50, 50); // position x, y, width, height
//line(0, 0, 100, 0);
//line(0, 0, mouseX, mouseY);
}