static float unprecise_invSqrt(float x) { float xhalf = 0.5f * x; int i = Float.floatToIntBits(x); i = 0x5f3759df - (i >> 1); x = Float.intBitsToFloat(i); x *= (1.5f - xhalf * x * x); ret x; }
download show line numbers debug dex old transpilations
Travelled to 6 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt
1 comment(s) hidden. show
| Snippet ID: | #1024278 |
| Snippet name: | unprecise_invSqrt - the infamous inverse square root approximation |
| Eternal ID of this version: | #1024278/1 |
| Text MD5: | 9f21f44439309378799c64c01a193cbb |
| Author: | stefan |
| Category: | javax / maths |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2019-07-29 11:31:37 |
| Source code size: | 211 bytes / 8 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 523 / 577 |
| Referenced in: | [show references] |