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