xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255);
}
function draw() {
stroke(0, 0, 0);
//stroke(255, 255, 255, 100);
noFill();
//fill(0, 0, 0, 10);
//point(mouseX, mouseY);
ellipse(mouseX, mouseY, 100, 100); //position x, y, width, height
//rect(mouseX, mouseY, 100, 100); //position x, y, width, height
//line(0, 0, mouseX, mouseY);
ellipse(mouseX, mouseY, 200, 200)
}