xxxxxxxxxx
y=0,setup=_=>createCanvas(w=1112,h=834)
draw=_=>{colorMode(HSB,255);if(y<h)for(x=w;x--;point(x,y)){stroke(f(x/w,y/h-.3), 200, 255)};y++}
f=(x,y,c=0)=>x*x+y*y>4?c:f(x*y*2-3/4,sin(y-x)*sin(y+x),c+2) // c+3
function mousePressed(){save('pix.jpg'); }
// reference:
// https://dwitter.net/d/19840
// https://dwitter.net/d/19818
// https://dwitter.net/d/19805