From 697c011eb9efef05effbd4c19bd95b2eb3a6330d Mon Sep 17 00:00:00 2001 From: fallenoak Date: Sat, 24 Dec 2022 23:08:12 -0600 Subject: [PATCH] feat(box): add CAaBox --- tempest/Box.hpp | 1 + tempest/box/CAaBox.hpp | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 tempest/box/CAaBox.hpp diff --git a/tempest/Box.hpp b/tempest/Box.hpp index 1d859e9..1c2f68b 100644 --- a/tempest/Box.hpp +++ b/tempest/Box.hpp @@ -1,6 +1,7 @@ #ifndef TEMPEST_BOX_HPP #define TEMPEST_BOX_HPP +#include "tempest/box/CAaBox.hpp" #include "tempest/box/CBoundingBox.hpp" #endif diff --git a/tempest/box/CAaBox.hpp b/tempest/box/CAaBox.hpp new file mode 100644 index 0000000..639bd11 --- /dev/null +++ b/tempest/box/CAaBox.hpp @@ -0,0 +1,13 @@ +#ifndef TEMPEST_BOX_C_AABOX_HPP +#define TEMPEST_BOX_C_AABOX_HPP + +#include "tempest/Vector.hpp" + +class CAaBox { + public: + // Member variables + C3Vector b; + C3Vector t; +}; + +#endif