t=0,p=["#つぶやきProcessing"]
setup=_=>{
createCanvas(w=400,w/2,WEBGL)
colorMode(HSB,7)}
draw=_=>{
t<14?t+=.05:t=0
translate(-w/3,-w/3),r=noise(w%t)
for(i=0;i<w/2;i+=9)
p[i]={x:i+i*cos(w/t),y:i*sin(w%t)}
p.forEach(e=>fill(i*t/w,30,40,3)+translate(e.x*9,e.y*9)+
push()+box(r*36))}