xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(255);
for(let x = 0; x < width; x = x + 20){
strokeWeight(5);
stroke(100, map(x,0,width,0,255), 50);
line(mouseX, mouseY, x, 0);
line(mouseX, mouseY, x, height);
}
stroke(234,90,67);
circle(mouseX,mouseY,230);
strokeWeight(24);
point(mouseX,mouseY);
}