aboutsummaryrefslogtreecommitdiff
path: root/src/o3d/camera.cpp
diff options
context:
space:
mode:
authorvimene <vincent.menegaux@gmail.com>2023-11-26 17:58:30 +0100
committervimene <vincent.menegaux@gmail.com>2023-11-26 17:58:30 +0100
commite730e8bdc69ef89dfa28d2606d260cb8b72f4740 (patch)
treec219050793df6d1d777e94ea3c887027cde7451e /src/o3d/camera.cpp
parent5a1d67d1797a3db874e44500e13237d676843185 (diff)
downloadengine-e730e8bdc69ef89dfa28d2606d260cb8b72f4740.tar.gz
added scenes, camera and meshes
Diffstat (limited to 'src/o3d/camera.cpp')
-rw-r--r--src/o3d/camera.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/o3d/camera.cpp b/src/o3d/camera.cpp
new file mode 100644
index 0000000..9ad2ac7
--- /dev/null
+++ b/src/o3d/camera.cpp
@@ -0,0 +1,7 @@
+#include "o3d/camera.h"
+#include "math/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} {
+}