22 lines
264 B
C++
22 lines
264 B
C++
|
|
#ifndef AABB_H
|
|
#define AABB_H
|
|
|
|
class AABB
|
|
{
|
|
public:
|
|
Vector min;
|
|
Vector max;
|
|
|
|
AABB()
|
|
{
|
|
}
|
|
|
|
AABB(const Vector & min, const Vector & max)
|
|
: min(min), max(max)
|
|
{
|
|
}
|
|
};
|
|
|
|
#endif /* AABB_H */
|