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_OOBox_H_
00036 #define _GMTL_OOBox_H_
00037
00038 #include <gmtl/Vec3.h>
00039 #include <gmtl/Point3.h>
00040 #include <gmtl/matVecFuncs.h>
00041
00042 namespace gmtl
00043 {
00044
00045
00046
00047
00048 class OOBox
00049 {
00050
00051 public:
00052 OOBox()
00053 { ident(); }
00054
00055 OOBox(OOBox& box);
00056
00057 public:
00058
00059 Point3& center();
00060 const Point3& center() const;
00061
00062 Vec3& axis (int i);
00063 const Vec3& axis (int i) const;
00064 Vec3* axes ();
00065 const Vec3* axes () const;
00066
00067 float& halfLen(int i);
00068 const float& halfLen(int i) const;
00069 float* halfLens();
00070 const float* halfLens() const;
00071
00072
00073 OOBox& operator=(const OOBox& box);
00074
00075
00076 bool operator==(const OOBox& box) const;
00077
00078
00079
00080
00081 void getVerts(Point3 verts[8]) const;
00082
00083
00084 void mergeWith(const OOBox& box);
00085
00086 void ident()
00087 {
00088 mCenter = ZeroVec3;
00089 mAxis[0] = XUnitVec3;
00090 mAxis[1] = YUnitVec3;
00091 mAxis[2] = ZUnitVec3;
00092 mHalfLen[0] = mHalfLen[1] = mHalfLen[2] = 0.0f;
00093 }
00094
00095 public:
00096 Point3 mCenter;
00097 Vec3 mAxis[3];
00098 float mHalfLen[3];
00099 };
00100
00101
00102
00103
00104
00105 inline
00106 OOBox::OOBox(OOBox& box)
00107 {
00108 mCenter = box.mCenter;
00109 mAxis[0] = box.mAxis[0];
00110 mAxis[1] = box.mAxis[1];
00111 mAxis[2] = box.mAxis[2];
00112 mHalfLen[0] = box.mHalfLen[0];
00113 mHalfLen[1] = box.mHalfLen[1];
00114 mHalfLen[2] = box.mHalfLen[2];
00115 }
00116
00117
00118 inline Point3& OOBox::center()
00119 {
00120 return mCenter;
00121 }
00122
00123 inline const Point3& OOBox::center() const
00124 {
00125 return mCenter;
00126 }
00127
00128 inline Vec3& OOBox::axis (int i)
00129 {
00130 return mAxis[i];
00131 }
00132
00133 inline const Vec3& OOBox::axis (int i) const
00134 {
00135 return mAxis[i];
00136 }
00137
00138 inline Vec3* OOBox::axes ()
00139 {
00140 return mAxis;
00141 }
00142
00143 inline const Vec3* OOBox::axes () const
00144 {
00145 return mAxis;
00146 }
00147
00148 inline float& OOBox::halfLen(int i)
00149 {
00150 return mHalfLen[i];
00151 }
00152
00153 inline const float& OOBox::halfLen(int i) const
00154 {
00155 return mHalfLen[i];
00156 }
00157
00158 inline float* OOBox::halfLens()
00159 {
00160 return mHalfLen;
00161 }
00162
00163 inline const float* OOBox::halfLens() const
00164 {
00165 return mHalfLen;
00166 }
00167
00168
00169 inline OOBox& OOBox::operator=(const OOBox& box)
00170 {
00171 mCenter = box.mCenter;
00172 mAxis[0] = box.mAxis[0];
00173 mAxis[1] = box.mAxis[1];
00174 mAxis[2] = box.mAxis[2];
00175 mHalfLen[0] = box.mHalfLen[0];
00176 mHalfLen[1] = box.mHalfLen[1];
00177 mHalfLen[2] = box.mHalfLen[2];
00178 return *this;
00179 }
00180
00181
00182 inline bool OOBox::operator==(const OOBox& box) const
00183 {
00184 return ((mCenter == box.mCenter) &&
00185 (mAxis[0] == box.mAxis[0]) &&
00186 (mAxis[1] == box.mAxis[1]) &&
00187 (mAxis[2] == box.mAxis[2]) &&
00188 (mHalfLen[0] == box.mHalfLen[0]) &&
00189 (mHalfLen[1] == box.mHalfLen[1]) &&
00190 (mHalfLen[2] == box.mHalfLen[2]));
00191 }
00192
00193 inline void OOBox::getVerts(Point3 verts[8]) const
00194 {
00195 Vec3 x_half_axis = mAxis[0]*mHalfLen[0];
00196 Vec3 y_half_axis = mAxis[1]*mHalfLen[1];
00197 Vec3 z_half_axis = mAxis[2]*mHalfLen[2];
00198
00199 verts[0] = mCenter - x_half_axis - y_half_axis - z_half_axis;
00200 verts[1] = mCenter + x_half_axis - y_half_axis - z_half_axis;
00201 verts[2] = mCenter + x_half_axis + y_half_axis - z_half_axis;
00202 verts[3] = mCenter - x_half_axis + y_half_axis - z_half_axis;
00203 verts[4] = mCenter - x_half_axis - y_half_axis + z_half_axis;
00204 verts[5] = mCenter + x_half_axis - y_half_axis + z_half_axis;
00205 verts[6] = mCenter + x_half_axis + y_half_axis + z_half_axis;
00206 verts[7] = mCenter - x_half_axis + y_half_axis + z_half_axis;
00207 }
00208
00209 };
00210
00211 #endif