Update index.js

This commit is contained in:
Samuel Lord 2024-01-27 15:56:35 -06:00 committed by GitHub
parent 68661c5beb
commit ae1fbe4d2e
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 = threehalfs - (x2 * y * y);
y = Math.abs(y); y = Math.abs(y);
y = (y / 1000000000000000000); y = (y / 1000000000000000000);
y = y - ((Math.floor(y) / 10) / y); y = y - ((Math.floor(y) / 10) / (y * .0777));
y = Math.round(y * 100) / 100; y = Math.round(y * 100) / 100;
return y; return y;
} }