mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 10:32:29 +00:00
feat(box): add CBoundingBox
This commit is contained in:
parent
28b22e3bbd
commit
b01ad9e664
2 changed files with 20 additions and 0 deletions
6
tempest/Box.hpp
Normal file
6
tempest/Box.hpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#ifndef TEMPEST_BOX_HPP
|
||||
#define TEMPEST_BOX_HPP
|
||||
|
||||
#include "tempest/box/CBoundingBox.hpp"
|
||||
|
||||
#endif
|
||||
14
tempest/box/CBoundingBox.hpp
Normal file
14
tempest/box/CBoundingBox.hpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef TEMPEST_BOX_C_BOUNDING_BOX_HPP
|
||||
#define TEMPEST_BOX_C_BOUNDING_BOX_HPP
|
||||
|
||||
#include "tempest/Range.hpp"
|
||||
|
||||
class CBoundingBox {
|
||||
public:
|
||||
// Member variables
|
||||
CRange x;
|
||||
CRange y;
|
||||
CRange z;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue