mirror of
https://github.com/AxioDL/zeus.git
synced 2025-12-21 10:49:15 +00:00
Fix some compilation warnings
This commit is contained in:
@@ -137,7 +137,7 @@ public:
|
||||
|
||||
struct Tri {
|
||||
zeus::CPlane x0_plane;
|
||||
zeus::CVector3f x10_[3];
|
||||
zeus::CVector3f x10_verts[3];
|
||||
};
|
||||
Tri getTri(EBoxFaceId face, int windOffset) const;
|
||||
|
||||
|
||||
@@ -17,15 +17,6 @@
|
||||
|
||||
namespace zeus {
|
||||
|
||||
static float normalize_angle(float angle) {
|
||||
if (angle > M_PIF)
|
||||
angle -= 2.f * M_PIF;
|
||||
else if (angle < -M_PIF)
|
||||
angle += 2.f * M_PIF;
|
||||
|
||||
return angle;
|
||||
}
|
||||
|
||||
class CNUQuaternion;
|
||||
|
||||
/** Unit quaternion, used for all quaternion arithmetic */
|
||||
|
||||
Reference in New Issue
Block a user