feat: added the ability to render whole model

This commit is contained in:
2025-11-13 13:47:59 +01:00
parent f8ffb9c0b3
commit e370c1d0c3
6 changed files with 123 additions and 22 deletions

12
model.hpp Normal file
View File

@@ -0,0 +1,12 @@
#ifndef MODEL_H
#define MODEL_H
#include "fastmath.hpp"
#include <vector>
struct model {
std::vector<vec3> verts;
std::vector<uint16_t> faces;
};
#endif