Carmack在QUAKE3中使用的计算平方根的函数
摘要:// // Carmack在QUAKE3中使用的计算平方根的函数 // float CarmSqrt(float x){ union{ int intPart; float floatPart; } convertor; union{ int intPart; float floatPart; } convertor2; convertor.floatPart = x; convertor2.f...
阅读全文
posted @
2016-06-03 15:52
枫叶飘零黄昏血
阅读(280)
推荐(0)