From: Ruben Beltran del Rio Date: Fri, 16 Feb 2024 23:16:18 +0000 (+0100) Subject: Move id and spn to top X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/commitdiff_plain/06f7a18a7a7a2f3ebaef77be0769d815751e70af?hp=e2d44b575ded68f50c98d9767dc2af697eeb5ca2 Move id and spn to top --- diff --git a/js/animation.js b/js/animation.js index 6c58320..a585332 100644 --- a/js/animation.js +++ b/js/animation.js @@ -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, @@ -75,18 +80,6 @@ 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)