feat(box): add CAaBox

This commit is contained in:
fallenoak 2022-12-24 23:08:12 -06:00
parent b01ad9e664
commit 697c011eb9
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 14 additions and 0 deletions

View file

@ -1,6 +1,7 @@
#ifndef TEMPEST_BOX_HPP #ifndef TEMPEST_BOX_HPP
#define TEMPEST_BOX_HPP #define TEMPEST_BOX_HPP
#include "tempest/box/CAaBox.hpp"
#include "tempest/box/CBoundingBox.hpp" #include "tempest/box/CBoundingBox.hpp"
#endif #endif

13
tempest/box/CAaBox.hpp Normal file
View file

@ -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