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/mesh.h | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) (limited to 'src/o3d/mesh.h') diff --git a/src/o3d/mesh.h b/src/o3d/mesh.h index 4aad0e4..1c70ca4 100644 --- a/src/o3d/mesh.h +++ b/src/o3d/mesh.h @@ -10,20 +10,15 @@ namespace engine::o3d { -class Mesh { - public: -// static Mesh cube(); // this function should not be in this file - static Mesh plane(); // this function should not be in this file +using engine::math::Vector3, engine::math::Vector4; - std::vector vertices; - std::vector normals; - std::vector vertices_data; - std::vector, 3>> indices; +struct Mesh { + static Mesh plane(); - Mesh(std::vector vertices, - std::vector normals, - std::vector vertices_data, - std::vector, 3>> indices); + std::vector vertices; + std::vector normals; + std::vector vertices_data; + std::vector, 3>> indices; }; } -- cgit v1.2.3