X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/blobdiff_plain/e2d44b575ded68f50c98d9767dc2af697eeb5ca2..55ca90876437f97ea98ff9e17535c9c1fc7b4f95:/js/animation.js 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)