]> git.r.bdr.sh - rbdr/r.bdr.sh/blobdiff - js/animation.js
Move id and spn to top
[rbdr/r.bdr.sh] / js / animation.js
index 657071fa5c99a7c87e467066bb38d383e3ea4ee1..a585332a7a53aca1d449dc77dc9d46c2b66bea1b 100644 (file)
@@ -2,6 +2,11 @@
 
   var K = document.querySelector('canvas'),
       { random: R, PI, cos: C, sin: S, floor, atan2: A } = Math,
+      id = p => p,
+      spn = rad => p => ({
+          x: p.x + rad * C(l),
+          y: p.y + rad * S(l)
+      }),
       x = K.getContext('2d'),
       f = 24,
       l = 0,
@@ -15,9 +20,9 @@
         a: R() * 2 * PI,
         c: Array(3).fill(r(256))
       })),
-      S = [sqr, crc, hrt, chs, lch],
+      H = [sqr, crc, hrt, chs, lch],
       P = [id, spn(5), spn(15)],
-      draw = S[r(S.length)],
+      draw = H[r(H.length)],
       pos = P[r(P.length)]
 
   function r(x) {
     x.closePath()
   }
 
-  function id(p) {
-
-    return p
-  }
-
-  function spn(rad) {
-    return (p) => ({
-        x: p.x + rad * C(l),
-        y: p.y + rad * S(l)
-    })
-  }
-
   function mov(i) {
 
     i.x = i.x + spd * C(i.a)
     i.y = i.y + spd * S(i.a)
 
-    (i.x < 0 || i.x > 64) && (i.a = A(S(i.a), -C(i.a)))
-    (i.y < 0 || i.y > 64) && (i.a = A(-S(i.a), C(i.a)))
+    if (i.x < 0 || i.x > 64) {
+      i.a = A(S(i.a), -C(i.a))
+    }
+    if (i.y < 0 || i.y > 64) {
+      i.a = A(-S(i.a), C(i.a))
+    }
   }
 
   function ucl(i) {