会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
枫叶飘零黄昏血
博客园
首页
博问
闪存
新随笔
订阅
管理
2016年6月3日
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 枫叶飘零黄昏血
阅读(266)
评论(0)
推荐(0)
编辑