xxxxxxxxxx
setup=()=>{
createCanvas(1040,1040*(5/4))
background(0)
}
draw=()=>{
stroke(255,255,255,10)
strokeWeight(0.5)
r=(x)=>x*random(0.25,0.75)
line(random(0,r(width)),
random(0,r(height)),
random(r(width),width),
random(r(height),height))
if (frameCount === 50000) noLoop()
}