X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/blobdiff_plain/ad84fcffd61dabbbbc14865c7b23800bccf66cbd..55ca90876437f97ea98ff9e17535c9c1fc7b4f95:/js/animation.js diff --git a/js/animation.js b/js/animation.js index 4c04e12..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,25 +80,17 @@ 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) {