00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef _GMTL_AABOX_H_
00036 #define _GMTL_AABOX_H_
00037
00038 #include <gmtl/Point.h>
00039
00040 namespace gmtl
00041 {
00050 template< class DATA_TYPE >
00051 class AABox
00052 {
00053 public:
00054 typedef DATA_TYPE DataType;
00055
00056 public:
00060 AABox()
00061 : mMin(0,0,0), mMax(0,0,0), mEmpty(true)
00062 {}
00063
00073 AABox(const Point<DATA_TYPE, 3>& min, const Point<DATA_TYPE, 3>& max)
00074 : mMin(min), mMax(max), mEmpty(false)
00075 {}
00076
00082 AABox(const AABox<DATA_TYPE>& box)
00083 : mMin(box.mMin), mMax(box.mMax), mEmpty(box.mEmpty)
00084 {}
00085
00091 const Point<DATA_TYPE, 3>& getMin() const
00092 {
00093 return mMin;
00094 }
00095
00101 const Point<DATA_TYPE, 3>& getMax() const
00102 {
00103 return mMax;
00104 }
00105
00111 bool isEmpty() const
00112 {
00113 return mEmpty;
00114 }
00115
00121 void setMin(const Point<DATA_TYPE, 3>& min)
00122 {
00123 mMin = min;
00124 }
00125
00131 void setMax(const Point<DATA_TYPE, 3>& max)
00132 {
00133 mMax = max;
00134 }
00135
00141 void setEmpty(bool empty)
00142 {
00143 mEmpty = empty;
00144 }
00145
00146 public:
00150 Point<DATA_TYPE, 3> mMin;
00151
00155 Point<DATA_TYPE, 3> mMax;
00156
00160 bool mEmpty;
00161 };
00162
00163
00164 typedef AABox<float> AABoxf;
00165 typedef AABox<double> AABoxd;
00166 }
00167
00168 #endif