u(t) is called 60 times per second.
t: Elapsed time in seconds.
S: Shorthand for Math.sin.
C: Shorthand for Math.cos.
T: Shorthand for Math.tan.
R: Function that generates rgba-strings, usage ex.: R(255, 255, 255, 0.5)
c: A 1920x1080 canvas.
x: A 2D context for that canvas.
a=Math.random;for(i=17;--i;)for(j=17;--j;)for(k=8*(a()-2)|0;k++;t||x.strokeRect(-32,-32,64,64))x.setTransform(s=a(),0,0,s,60*i,60*j),x.rotate((a()-.5)/4) for a 153-char golf :/
u/BirdsTweetCodersDweet: that helps, but I really wanted to keep the centered display. See my remix where I use a single for loop to jump around the grid randomly, which avoids the random initialization of k.
u(t) is called 60 times per second.
t: elapsed time in seconds.
c: A 1920x1080 canvas.
x: A 2D context for that canvas.
S: Math.sin
C: Math.cos
T: Math.tan
R: Generates rgba-strings, ex.: R(255, 255, 255, 0.5)