fart/util/AABB.h
2010-09-28 16:37:27 +00:00

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 */