diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-12-03 09:27:32 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-12-03 09:27:32 +0100 |
commit | 48ec7df0fd27fab05c9918e83a3a7da1cc32d7a0 (patch) | |
tree | 259ec6e395e44b0af117adc9605203f8affb4b0f /src/o3d/camera.cpp | |
parent | 5a8bc0a4936cdd461c43740437541f8c991ff117 (diff) | |
download | engine-48ec7df0fd27fab05c9918e83a3a7da1cc32d7a0.tar.gz |
renamed MathVector{2,3,4} to Vector{2,3,4} and Mat4 to Matrix4 in engine::math
Diffstat (limited to 'src/o3d/camera.cpp')
-rw-r--r-- | src/o3d/camera.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/o3d/camera.cpp b/src/o3d/camera.cpp index 9ad2ac7..cbb3cd2 100644 --- a/src/o3d/camera.cpp +++ b/src/o3d/camera.cpp @@ -1,7 +1,7 @@ #include "o3d/camera.h" -#include "math/math_vector.h" +#include "math/vector.h" using namespace engine::o3d; -Camera::Camera(engine::math::MathVector3 loc, float rot_x, float rot_y, float rot_z) : loc{loc}, rot_x{rot_x}, rot_y{rot_y}, rot_z{rot_z} { +Camera::Camera(engine::math::Vector3 loc, float rot_x, float rot_y, float rot_z) : loc{loc}, rot_x{rot_x}, rot_y{rot_y}, rot_z{rot_z} { } |