]> git.r.bdr.sh - rbdr/r.bdr.sh/commitdiff
Get rid of floor
authorRuben Beltran del Rio <redacted>
Sat, 17 Feb 2024 00:12:31 +0000 (01:12 +0100)
committerRuben Beltran del Rio <redacted>
Sat, 17 Feb 2024 00:12:31 +0000 (01:12 +0100)
js/animation.js

index 6a67699cab06435bf3f74b3356b08e9fa902a5ab..71d5aa33843608bf192e5cf21693ec2a9ab12ce8 100644 (file)
@@ -1,7 +1,7 @@
 (function () {
 
   var K = document.querySelector('canvas'),
-    { random: R, PI, cos: C, sin: S, floor, atan2: A } = Math,
+    { random: R, PI, cos: C, sin: S, atan2: A } = Math,
     id = p => p,
     spn = rad => p => ({
         x: p.x + rad * C(l),
@@ -18,7 +18,7 @@
     draw = H[r(H.length)], pos = P[r(P.length)]
 
   function r(x) {
-    return floor(R() * x)
+    return ~~(R() * x)
   }
 
   function sqr(i) {