chore(binana): add files

This commit is contained in:
phaneron 2024-07-07 03:00:06 -04:00
commit aa605d1aef
14 changed files with 305 additions and 0 deletions

View file

@ -0,0 +1,21 @@
#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