X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/blobdiff_plain/5099a2f634b4454f57ba342ed9c0e881f90c6125..60084ea2a6cc7c001a4bbeb46f2d296afc3ecdac:/js/animation.js diff --git a/js/animation.js b/js/animation.js index 10ffafe..2474be3 100644 --- a/js/animation.js +++ b/js/animation.js @@ -18,7 +18,7 @@ x: r(64), y: r(64), a: R() * 2 * PI, - c: Array(3).fill(r(256)) + c: r(256) })), H = [sqr, crc, hrt, chs, lch], P = [id, spn(5), spn(15)], @@ -58,7 +58,7 @@ var {x, y} = pos(i) X.beginPath() X.lineWidth = 5 - X.strokeStyle = `rgb(${i.c.join(',')})` + X.strokeStyle = `hsl(0,0,${i.c})` X.moveTo(x, y) X.lineTo(x * 10 * C(i.a), y * 10 * S(i.a)) X.stroke() @@ -94,7 +94,7 @@ } function ucl(i) { - i.c = i.c.map(c => (c + 5) % 256) + i.c = (i.c + 5) % 256 } function frm(t) { @@ -106,7 +106,7 @@ if (dt > 1000 / f) { k && X.clearRect(0, 0, 64, 64) for (var i of I) { - X.fillStyle = `rgb(${i.c.join(',')})` + X.fillStyle = `hsl(0,0,${i.c})` draw(i) c && ucl(i) mov(i)