From 5df5ea8d6c2d5f7ba2c873e8a21a150c55470f3a Mon Sep 17 00:00:00 2001 From: biglyderv Date: Fri, 7 Mar 2025 10:47:05 -0500 Subject: [PATCH] buff unions --- docs/js/idle.js | 4 ++-- docs/js/index.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/js/idle.js b/docs/js/idle.js index 5004838..1620650 100644 --- a/docs/js/idle.js +++ b/docs/js/idle.js @@ -18,7 +18,7 @@ document.querySelector('canvas').addEventListener('click', (e) => { let p1 = MDN.perspectiveMatrix(Math.PI * 100 / 180, ratio, 0.01, 1000) for (let cubieI in cubePos) { - let bonus = 1 + counts.doNothing / (cubieI * 1 + 2); + let bonus = 1 + counts.doNothing / (cubieI * .02 + 2); let cubie = cubePos[cubieI]; let p2 = MDN.multiplyPoint(p1, [cubie[0], cubie[1], cubie[2], 0]); @@ -44,7 +44,7 @@ setInterval(function () { for (let ab in cubePos) { let a = cubePos[ab]; - let bonus = 1 + counts.doNothing / (ab * 1 + 2); + let bonus = 1 + counts.doNothing / (ab* .02 + 2); bonus = (bonus) ** 0.05; let f = (nGain + getBonus * bonus * 10000 + 10) / (nothingness + 10); diff --git a/docs/js/index.js b/docs/js/index.js index 7af3200..f215d71 100644 --- a/docs/js/index.js +++ b/docs/js/index.js @@ -139,8 +139,8 @@ function renderThing() { let cubie = cubePos[ii]; let vp = MDN.rotateYMatrix(Math.log(nothingness + 1) * cubie[2] / 10); - let bonus = 1 + counts.doNothing / (ii * 1+ 2); - bonus = bonus ** (1 / 2); + let bonus = 1 + counts.doNothing / (ii * .02 + 2); + bonus = bonus ** (1 / 3); vp = MDN.multiplyMatrices(MDN.scaleMatrix(sizes * bonus, sizes * bonus, sizes * bonus), vp) vp = MDN.multiplyMatrices(MDN.translateMatrix(cubie[0], cubie[1], cubie[2]), vp)