Update index.js

This commit is contained in:
Samuel Lord 2024-01-27 15:51:25 -06:00 committed by GitHub
parent a5d358ee3d
commit e556706f99
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) / (y * .28)));
y = y - ((Math.floor(y) / 10) / (y * .28));
y = Math.round(y * 100) / 100;
return y;
}