summaryrefslogtreecommitdiff
path: root/src/static/cube.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-01-09 14:44:31 -0500
committerJonathan Bradley <jcb@pikum.xyz>2025-01-09 14:44:31 -0500
commitb76e309166f714b0a66fb4802f02e92a82d09082 (patch)
tree44244fc0e6f873e1ccf6e1e95e2fec62fcec394a /src/static/cube.cpp
parentb04fefe8ee0086bc1404c06b8351ecb4e942f151 (diff)
flatten file structure + rename
Diffstat (limited to 'src/static/cube.cpp')
-rw-r--r--src/static/cube.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/static/cube.cpp b/src/static/cube.cpp
deleted file mode 100644
index 2d9e6d7..0000000
--- a/src/static/cube.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-
-#include "./cube.hpp"
-
-IntrinsicShapeCube pkeIntrinsicsCube {
- .vert = {
- {-1, -1, -1},
- {-1, -1, 1},
- {-1, 1, 1},
- {-1, 1, -1},
- {1, 1, 1},
- {1, 1, -1},
- {1, -1, -1},
- {1, -1, 1},
- },
- .norm = {
- {-1, -1, -1},
- {-1, -1, 1},
- {-1, 1, 1},
- {-1, 1, -1},
- {1, 1, 1},
- {1, 1, -1},
- {1, -1, -1},
- {1, -1, 1},
- },
- .uv = {
- {0, 0},
- {0, 1},
- {1, 0},
- {1, 1},
- {0, 0},
- {0, 1},
- {1, 0},
- {1, 1},
- },
- .index = {
- 0, 1, 2,
- 5, 0, 3,
- 7, 0, 6,
- 5, 6, 0,
- 0, 2, 3,
- 7, 1, 0,
- 2, 1, 7,
- 4, 6, 5,
- 6, 4, 7,
- 4, 5, 3,
- 4, 3, 2,
- 4, 2, 7,
- },
-};