diff options
Diffstat (limited to 'src/o3d/camera.h')
-rw-r--r-- | src/o3d/camera.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/o3d/camera.h b/src/o3d/camera.h index 1039f86..5d72d29 100644 --- a/src/o3d/camera.h +++ b/src/o3d/camera.h @@ -1,7 +1,7 @@ #ifndef O3D_CAMERA_H #define O3D_CAMERA_H -#include "math/math_vector.h" +#include "math/vector.h" namespace engine::o3d { @@ -10,10 +10,10 @@ class Scene; class Camera { public: Scene* scene = nullptr; - engine::math::MathVector3 loc; + engine::math::Vector3 loc; float rot_x, rot_y, rot_z; // TODO: replace by quaternions - Camera(engine::math::MathVector3 loc, float rot_x, float rot_y, float rot_z); + Camera(engine::math::Vector3 loc, float rot_x, float rot_y, float rot_z); }; } |