diff options
Diffstat (limited to 'src/o3d/tri_vertex.h')
-rw-r--r-- | src/o3d/tri_vertex.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/o3d/tri_vertex.h b/src/o3d/tri_vertex.h index 91e20f5..368a5e0 100644 --- a/src/o3d/tri_vertex.h +++ b/src/o3d/tri_vertex.h @@ -4,6 +4,8 @@ #include "o3d/vertex.h" #include <vector> +namespace engine::o3d { + class TriangleVertex3 { public: Vertex3 vertex1; @@ -26,4 +28,6 @@ class TriangleVertex4 { TriangleVertex3 div_by_w() const; }; +} + #endif // O3D_TRI_VERTEX_H |