binana/3.3.5a/include/tempest/box.h

21 lines
310 B
C
Raw Normal View History

2024-07-07 03:00:06 -04:00
#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