mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
21 lines
No EOL
272 B
C
21 lines
No EOL
272 B
C
#ifndef TEMPEST_BOX_H
|
|
#define TEMPEST_BOX_H
|
|
|
|
#include "tempest/vector.h"
|
|
#include "tempest/range.h"
|
|
|
|
DECLARE_STRUCT(CAaBox);
|
|
DECLARE_STRUCT(CBoundingBox);
|
|
|
|
struct CAaBox {
|
|
C3Vector b;
|
|
C3Vector t;
|
|
};
|
|
|
|
struct CBoundingBox {
|
|
CRange x;
|
|
CRange y;
|
|
CRange z;
|
|
};
|
|
|
|
#endif |