summaryrefslogtreecommitdiff
path: root/inc/mesh.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/mesh.hpp')
-rw-r--r--inc/mesh.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/inc/mesh.hpp b/inc/mesh.hpp
new file mode 100644
index 0000000..db465fb
--- /dev/null
+++ b/inc/mesh.hpp
@@ -0,0 +1,22 @@
+#ifndef MESH_HPP
+#define MESH_HPP
+
+#include "vector.hpp"
+#include <memory>
+#include <tonc.h>
+#include <tuple>
+
+class Scene;
+
+typedef struct TRIANGLE {
+ std::tuple<std::uint8_t, std::uint8_t, std::uint8_t> vertex_indices;
+ std::uint8_t color_idx;
+} TRIANGLE;
+
+class Mesh {
+protected:
+ usu::vector<VECTOR> m_vertices;
+ usu::vector<TRIANGLE> m_triangles;
+};
+
+#endif // MESH_HPP