diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-11-26 08:43:14 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-11-26 08:43:14 +0100 |
commit | 5a1d67d1797a3db874e44500e13237d676843185 (patch) | |
tree | 17d0f1c2db6cc32fe40fdde4a081b96e8ad0ae13 /src/o3d/obj3d.h | |
parent | f63febed2a769d0c55192e192a20b8e39f162932 (diff) | |
download | engine-5a1d67d1797a3db874e44500e13237d676843185.tar.gz |
added namespaces, made every function in engine.cpp static and added warnings' flags
Diffstat (limited to 'src/o3d/obj3d.h')
-rw-r--r-- | src/o3d/obj3d.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/o3d/obj3d.h b/src/o3d/obj3d.h index c65a06b..795b337 100644 --- a/src/o3d/obj3d.h +++ b/src/o3d/obj3d.h @@ -7,6 +7,8 @@ #include "o3d/vertex.h" #include "o3d/tri_vertex.h" +namespace engine::o3d { + class Object3D { public: class TriangleVertex3Iterator { @@ -41,4 +43,6 @@ class Object3D { std::vector<std::array<int, 3>> faces; }; +} + #endif // O3D_OBJ3D_H |