mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
chore(binana): add files
This commit is contained in:
commit
aa605d1aef
14 changed files with 305 additions and 0 deletions
21
3.3.5a/include/tempest/box.h
Normal file
21
3.3.5a/include/tempest/box.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue