xxxxxxxxxx
10
function setup() {
createCanvas(windowWidth,windowHeight);
strokeWeight(2);
describe('A website background where the user draws a continuous line while moving the mouse');
}
function mouseMoved() {
stroke("#53d28f");
line(pmouseX, pmouseY, mouseX, mouseY);
}