開根號倒數 (InvSqrt(), 1 / sqrt(x)) 速算法
- 開根號倒數 (InvSqrt(), 1 / sqrt(x)) 速算法
float InvSqrt (float x) {
float xhalf = 0.5f*x;
int i = *(int*)&x;
i = 0x5f3759df - (i>>1);
x = *(float*)&i;
x = x*(1.5f - xhalf*x*x);
return x;
} - Origin of Quake3's Fast InvSqrt()
- MIT HAKMEM
- PROGRAMMING HACKS
沒有留言:
張貼留言