- more cppcheck code cleanup

This commit is contained in:
Mark Vejvoda
2012-10-06 03:42:31 +00:00
parent 97ba1a27e2
commit 2a80dd7c3c
7 changed files with 25 additions and 3 deletions

View File

@@ -31,7 +31,9 @@ public:
Vec3f axis;
float angle;
AxisAngle(){};
AxisAngle() {
angle = 0.0f;
}
AxisAngle(const Vec3f &axis, float angle);
};
@@ -43,7 +45,11 @@ class EulerAngles{
public:
float x, y, z;
EulerAngles(){};
EulerAngles() {
x = 0.0f;
y = 0.0f;
z = 0.0f;
}
EulerAngles(float x, float y, float z);
};