afVec4.cpp
资源名称:AirForce.rar [点击查看]
上传用户:kaiguan
上传日期:2007-10-28
资源大小:1074k
文件大小:0k
源码类别:
其他游戏
开发平台:
Visual C++
- #pragma warning(disable: 4514)
- #include "afVec4.h"
- #include <math.h>
- float afVec4::length()
- {
- return (float)sqrt( x*x + y*y + z*z + w*w );
- }
- void afVec4::makeHomogen()
- {
- if(w!=1.0)
- {
- float wa=(float)fabs(w);
- x/=wa;
- y/=wa;
- z/=wa;
- w=1.0;
- }
- }
- float afVec4::distance(const afVec4& left, const afVec4& right)
- {
- return (float)sqrt(pow(left.x-right.x,2) + pow(left.y-right.y,2) + pow(left.z-right.z,2));
- }