From 8806aa1f41bf4389dcdd4da874906bc711d22c51 Mon Sep 17 00:00:00 2001 From: onezDerv Date: Fri, 13 Sep 2024 07:21:57 -0400 Subject: [PATCH] increase attempt radius --- js/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/index.js b/js/index.js index 19614ca..72fe8b3 100644 --- a/js/index.js +++ b/js/index.js @@ -150,9 +150,9 @@ Game.prototype.map = function () { let x2 = 0, y2 = 0; - for (let i = 0; i < 100000; i++) { - x2 = Math.random() * 1e5; - y2 = Math.random() * 1e5; + for (let i = 0; i < 1000000; i++) { + x2 = Math.random() * 1e7; + y2 = Math.random() * 1e7; let mask = toPoint(x2, y2, base, this.fac, exp, inSize); if (mask == 1) break; }