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