xxxxxxxxxx
15
function setup() {
createCanvas(400, 400);
}
function draw() {
background(100, 0, 200);
strokeWeight(10)
stroke(0, 255, 0);
fill(0, 0, 255);
// mouseX and mouseY give you the current location of your mouse
ellipse(mouseX, mouseY, 25, 25);
}