increase attempt radius

This commit is contained in:
biglyderv 2024-09-13 07:21:57 -04:00
parent a53e7d5884
commit 8806aa1f41
No known key found for this signature in database
GPG key ID: 33AC87E9ACE66954

View file

@ -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;
}