#ifndef _AxisAlignedBox3_H__ #define _AxisAlignedBox3_H__ #include "vector3.h" namespace GtpVisibilityPreprocessor { /** Axis aligned box */ class AxisAlignedBox3 { protected: Vector3 min, max; }; }; #endif