xxxxxxxxxx
14
function setup() { // this function runs once when the page loads
createCanvas(windowWidth, windowHeight);
background(255,255,255); // making the background color white
}
function draw() { // this function will loop 60x a second
noStroke();
fill(0,0,0,20);
ellipse(mouseX, mouseY, 40, 40);
} // end of the draw() function