From cc6fb8c33637566a7b116d46440e6063f016deea Mon Sep 17 00:00:00 2001 From: vimene Date: Tue, 31 Dec 2024 03:40:14 +0100 Subject: various improvements - added quaternions and rewrote all rotations to use them - added transforms to put all object transforms in a single place - added Wavefront .obj file parser - removed frame buffer's abstract class - improved vectors, matrices, triangles, vertices and vertices data by putting all code in header file - added vector's operations - changed from NULL to nullptr - miscellaneous improvements --- src/o3d/camera.cpp | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 src/o3d/camera.cpp (limited to 'src/o3d/camera.cpp') diff --git a/src/o3d/camera.cpp b/src/o3d/camera.cpp deleted file mode 100644 index cbb3cd2..0000000 --- a/src/o3d/camera.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include "o3d/camera.h" -#include "math/vector.h" - -using namespace engine::o3d; - -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} { -} -- cgit v1.2.3