xxxxxxxxxx
// see iso.hedron's sketch: https://www.instagram.com/p/CKDrqFBn4hx
setup=()=>{createCanvas(1112,834)
colorMode(HSB,255);background(0)
for(let j=0;j<height;j++)for(let i=0;i<width;i++)set(i,j,color(j/2%255, 255, ceil(200*noise(1E-3*i,1E-3*j))%2*255))
updatePixels()}