Update index.js

This commit is contained in:
Samuel Lord 2024-01-27 15:50:13 -06:00 committed by GitHub
parent f7a03a6c33
commit 14e72c3180
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,7 +7,7 @@ function fastInverseSqrt(number) {
y = threehalfs - (x2 * y * y);
y = Math.abs(y);
y = (y / 1000000000000000000);
y = y - ((Math.floor(y) / 10) / .28);
y = Math.round(y * 100) / 100;
y = y - ((Math.floor(y) / 10) / 2);
return y;
}