xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
//background(255)
}
function draw() {
background(255);
for(let x = 0; x < width; x = x + 20){
line(x,0,mouseX,mouseY);
line(x, height,mouseX,mouseY);
}
}