xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255);
}
function draw() {
//stroke(255, 255, 255);
stroke(0, 0, 0, 500);
noFill();
//fill(255, 255, 255, 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(1000, 250, mouseX, mouseY);
}