summaryrefslogtreecommitdiff
path: root/src/cube.h
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-12-11 10:49:50 -0500
committerFreya Murphy <freya@freyacat.org>2025-12-11 10:51:40 -0500
commitfa8fa6784559ed0fc8d780e36880273f77e272c4 (patch)
tree7456a4e9148d47e409ba837bafdc6238b6c757db /src/cube.h
parentadd ubos (diff)
downloadvoxel-fa8fa6784559ed0fc8d780e36880273f77e272c4.tar.gz
voxel-fa8fa6784559ed0fc8d780e36880273f77e272c4.tar.bz2
voxel-fa8fa6784559ed0fc8d780e36880273f77e272c4.zip
i did a lot
Diffstat (limited to 'src/cube.h')
-rw-r--r--src/cube.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/src/cube.h b/src/cube.h
deleted file mode 100644
index fd071d0..0000000
--- a/src/cube.h
+++ /dev/null
@@ -1,60 +0,0 @@
-#pragma once
-
-#include <cglm/cglm.h>
-
-static const vec3 CUBE[6][6] = {
- {
- // PX
- { 1, 1, 1 },
- { 1, 0, 1 },
- { 1, 0, 0 },
- { 1, 0, 0 },
- { 1, 1, 0 },
- { 1, 1, 1 },
- },
- {
- // NX
- { 0, 1, 0 },
- { 0, 0, 0 },
- { 0, 0, 1 },
- { 0, 0, 1 },
- { 0, 1, 1 },
- { 0, 1, 0 },
- },
- {
- // PY
- { 1, 1, 0 },
- { 0, 1, 0 },
- { 0, 1, 1 },
- { 0, 1, 1 },
- { 1, 1, 1 },
- { 1, 1, 0 },
- },
- {
- // NY
- { 0, 0, 1 },
- { 0, 0, 0 },
- { 1, 0, 0 },
- { 1, 0, 0 },
- { 1, 0, 1 },
- { 0, 0, 1 },
- },
- {
- // PZ
- { 0, 1, 1 },
- { 0, 0, 1 },
- { 1, 0, 1 },
- { 1, 0, 1 },
- { 1, 1, 1 },
- { 0, 1, 1 },
- },
- {
- // NZ
- { 1, 1, 0 },
- { 1, 0, 0 },
- { 0, 0, 0 },
- { 0, 0, 0 },
- { 0, 1, 0 },
- { 1, 1, 0 },
- },
-};