From b76e309166f714b0a66fb4802f02e92a82d09082 Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Thu, 9 Jan 2025 14:44:31 -0500 Subject: flatten file structure + rename --- src/static-cube.hpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/static-cube.hpp (limited to 'src/static-cube.hpp') diff --git a/src/static-cube.hpp b/src/static-cube.hpp new file mode 100644 index 0000000..77ff439 --- /dev/null +++ b/src/static-cube.hpp @@ -0,0 +1,16 @@ +#ifndef PKE_STATIC_CUBE_HPP +#define PKE_STATIC_CUBE_HPP + +#include +#include + +struct IntrinsicShapeCube { + glm::vec3 vert[8]; + glm::vec3 norm[8]; + glm::vec2 uv[8]; + uint16_t index[36]; +}; + +extern IntrinsicShapeCube pkeIntrinsicsCube; + +#endif /* PKE_STATIC_CUBE_HPP */ -- cgit v1.2.3