diff options
Diffstat (limited to 'lib/basicShapes.h')
-rw-r--r-- | lib/basicShapes.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/basicShapes.h b/lib/basicShapes.h new file mode 100644 index 0000000..183863e --- /dev/null +++ b/lib/basicShapes.h @@ -0,0 +1,19 @@ +#pragma once +#include <array> +#include <glm/vec3.hpp> + +template<typename T, glm::qualifier Q = glm::defaultp> +constexpr std::array<glm::vec<3, T, Q>, 8> +cuboidCorners(T lx, T ux, T ly, T uy, T lz, T uz) +{ + return {{ + {lx, uy, lz}, // LFB + {ux, uy, lz}, // RFB + {lx, uy, uz}, // LFT + {ux, uy, uz}, // RFT + {lx, ly, lz}, // LBB + {ux, ly, lz}, // RBB + {lx, ly, uz}, // LBT + {ux, ly, uz}, // RBT + }}; +} |