aboutsummaryrefslogtreecommitdiff
path: root/src/o3d/mesh.h
diff options
context:
space:
mode:
authorvimene <vincent.menegaux@gmail.com>2023-12-09 08:57:38 +0100
committervimene <vincent.menegaux@gmail.com>2023-12-09 08:57:38 +0100
commit824aa5562864ca90ea903e2fa7d99459bbdf3a0b (patch)
treedea0463aed70f2d51723767632fdbba6b89bcedb /src/o3d/mesh.h
parentbf39fef7eed69e6d5ecfa272607cbf0fcc53b9a6 (diff)
downloadengine-824aa5562864ca90ea903e2fa7d99459bbdf3a0b.tar.gz
fixed perspective, added plane
Diffstat (limited to 'src/o3d/mesh.h')
-rw-r--r--src/o3d/mesh.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/o3d/mesh.h b/src/o3d/mesh.h
index 579c8b2..34d1e09 100644
--- a/src/o3d/mesh.h
+++ b/src/o3d/mesh.h
@@ -10,7 +10,8 @@ namespace engine::o3d {
class Mesh {
public:
- static Mesh cube(); // this function should not be in this file
+// static Mesh cube(); // this function should not be in this file
+ static Mesh plane(); // this function should not be in this file
std::vector<Vertex3> pts;
std::vector<std::array<int, 3>> faces;