xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(255,255,255);
}
function draw() {
background(115,mouseY,mouseX)
for(let x=0;x<width;x=x+20){
strokeWeight(3)
stroke(100,map(x,0,width,0,255),50)
line(x,0,mouseX,mouseY)
line(x,height,mouseX,mouseY)
}
/*strokeWeight(2)
stroke(255)
ellipse (mouseX,mouseY,100,50)
fill(10,30,80,223)
circle(mouseX,mouseY,100)
strokeWeight(11)
rect(mouseX,mouseY,212,110)
*/
}