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.
As far as i know you cannot use the "clearRect motion blur trick" on lines, because lines uses strokeStyle, you can however do somthin like this: x.fillStyle='#0001' for(x.fillRect(0,0,i=2e3,i);i--;x.clearRect(960+(v=40*w*S(i+t))+k*S(i),540+v/2+k*C(i+w),9,9))w=-5*C(t/2)+5,k=w*w*C(i)+99
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)