OGRE 2.1
Object-Oriented Graphics Rendering Engine
|
A 3D box aligned with the x/y/z axes. More...
#include <OgreAxisAlignedBox.h>
Public Types | |
enum | CornerEnum { FAR_LEFT_BOTTOM = 0 , FAR_LEFT_TOP = 1 , FAR_RIGHT_TOP = 2 , FAR_RIGHT_BOTTOM = 3 , NEAR_RIGHT_BOTTOM = 7 , NEAR_LEFT_BOTTOM = 6 , NEAR_LEFT_TOP = 5 , NEAR_RIGHT_TOP = 4 } |
enum | Extent { EXTENT_NULL , EXTENT_FINITE , EXTENT_INFINITE } |
Public Member Functions | |
AxisAlignedBox () | |
AxisAlignedBox (const AxisAlignedBox &rkBox) | |
AxisAlignedBox (const Vector3 &min, const Vector3 &max) | |
AxisAlignedBox (Extent e) | |
AxisAlignedBox (Real mx, Real my, Real mz, Real Mx, Real My, Real Mz) | |
~AxisAlignedBox () | |
bool | contains (const AxisAlignedBox &other) const |
Tests whether another box contained by this box. | |
bool | contains (const Vector3 &v) const |
Tests whether the given point contained by this box. | |
Real | distance (const Vector3 &v) const |
Returns the minimum distance between a given point and any part of the box. | |
const Vector3 * | getAllCorners (void) const |
Returns a pointer to an array of 8 corner points, useful for collision vs. | |
Vector3 | getCenter (void) const |
Gets the centre of the box. | |
Vector3 | getCorner (CornerEnum cornerToGet) const |
Gets the position of one of the corners. | |
Vector3 | getHalfSize (void) const |
Gets the half-size of the box. | |
Vector3 & | getMaximum (void) |
Gets a modifiable version of the maximum corner of the box. | |
const Vector3 & | getMaximum (void) const |
Gets the maximum corner of the box. | |
Vector3 & | getMinimum (void) |
Gets a modifiable version of the minimum corner of the box. | |
const Vector3 & | getMinimum (void) const |
Gets the minimum corner of the box. | |
Vector3 | getSize (void) const |
Gets the size of the box. | |
AxisAlignedBox | intersection (const AxisAlignedBox &b2) const |
Calculate the area of intersection of this box and another. | |
bool | intersects (const AxisAlignedBox &b2) const |
Returns whether or not this box intersects another. | |
bool | intersects (const Plane &p) const |
Tests whether this box intersects a plane. | |
bool | intersects (const Sphere &s) const |
Tests whether this box intersects a sphere. | |
bool | intersects (const Vector3 &v) const |
Tests whether the vector point is within this box. | |
bool | isFinite (void) const |
Returns true if the box is finite. | |
bool | isInfinite (void) const |
Returns true if the box is infinite. | |
bool | isNull (void) const |
Returns true if the box is null i.e. | |
void | merge (const AxisAlignedBox &rhs) |
Merges the passed in box into the current box. | |
void | merge (const Vector3 &point) |
Extends the box to encompass the specified point (if needed). | |
bool | operator!= (const AxisAlignedBox &rhs) const |
Tests 2 boxes for inequality. | |
AxisAlignedBox & | operator= (const AxisAlignedBox &rhs) |
bool | operator== (const AxisAlignedBox &rhs) const |
Tests 2 boxes for equality. | |
void | scale (const Vector3 &s) |
Scales the AABB by the vector given. | |
void | setExtents (const Vector3 &min, const Vector3 &max) |
Sets both minimum and maximum extents at once. | |
void | setExtents (Real mx, Real my, Real mz, Real Mx, Real My, Real Mz) |
void | setInfinite () |
Sets the box to 'infinite'. | |
void | setMaximum (const Vector3 &vec) |
Sets the maximum corner of the box. | |
void | setMaximum (Real x, Real y, Real z) |
void | setMaximumX (Real x) |
Changes one of the components of the maximum corner of the box used to resize only one dimension of the box. | |
void | setMaximumY (Real y) |
void | setMaximumZ (Real z) |
void | setMinimum (const Vector3 &vec) |
Sets the minimum corner of the box. | |
void | setMinimum (Real x, Real y, Real z) |
void | setMinimumX (Real x) |
Changes one of the components of the minimum corner of the box used to resize only one dimension of the box. | |
void | setMinimumY (Real y) |
void | setMinimumZ (Real z) |
void | setNull () |
Sets the box to a 'null' value i.e. | |
Real | squaredDistance (const Vector3 &v) const |
Returns the squared minimum distance between a given point and any part of the box. | |
void | transform (const Matrix4 &matrix) |
Transforms the box according to the matrix supplied. | |
void | transformAffine (const Matrix4 &m) |
Transforms the box according to the affine matrix supplied. | |
Real | volume (void) const |
Calculate the volume of this box. | |
Static Public Attributes | |
static const AxisAlignedBox | BOX_INFINITE |
static const AxisAlignedBox | BOX_NULL |
Friends | |
_OgreExport friend std::ostream & | operator<< (std::ostream &o, const AxisAlignedBox &aab) |
A 3D box aligned with the x/y/z axes.
|
inline |
|
inline |
|
inline |
References Ogre::max(), and Ogre::min().
|
inline |
|
inline |
References Ogre::MEMCATEGORY_SCENE_CONTROL, and OGRE_FREE.
|
inline |
Tests whether another box contained by this box.
References isInfinite(), isNull(), Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
Tests whether the given point contained by this box.
References Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
Returns the minimum distance between a given point and any part of the box.
References Ogre::Math::Sqrt().
Returns a pointer to an array of 8 corner points, useful for collision vs.
non-aligned objects.
1-------2 /| /| / | / | 5-------4 | | 0----|--3 | / | / |/ |/ 6-------7
References Ogre::MEMCATEGORY_SCENE_CONTROL, OGRE_ALLOC_T, Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
Gets the centre of the box.
References Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
|
inline |
Gets the position of one of the corners.
References Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
Gets the half-size of the box.
References Ogre::Math::POS_INFINITY, and Ogre::Vector3::ZERO.
Gets a modifiable version of the maximum corner of the box.
Gets the maximum corner of the box.
Gets a modifiable version of the minimum corner of the box.
Gets the minimum corner of the box.
Gets the size of the box.
References Ogre::Math::POS_INFINITY, and Ogre::Vector3::ZERO.
|
inline |
Calculate the area of intersection of this box and another.
|
inline |
Returns whether or not this box intersects another.
References Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
Tests whether this box intersects a plane.
References Ogre::Math::intersects().
Tests whether this box intersects a sphere.
References Ogre::Math::intersects().
Tests whether the vector point is within this box.
References Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
Returns true if the box is infinite.
Referenced by contains().
|
inline |
Merges the passed in box into the current box.
The result is the box which encompasses both.
References Ogre::max(), and Ogre::min().
Extends the box to encompass the specified point (if needed).
References Ogre::Vector3::makeCeil(), and Ogre::Vector3::makeFloor().
|
inline |
Tests 2 boxes for inequality.
|
inline |
|
inline |
Tests 2 boxes for equality.
Scales the AABB by the vector given.
References Ogre::max(), and Ogre::min().
Sets both minimum and maximum extents at once.
References Ogre::max(), and Ogre::min().
|
inline |
References Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
|
inline |
Sets the box to 'infinite'.
Sets the maximum corner of the box.
References Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
Changes one of the components of the maximum corner of the box used to resize only one dimension of the box.
References Ogre::Vector3::x.
References Ogre::Vector3::y.
References Ogre::Vector3::z.
Sets the minimum corner of the box.
References Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
Changes one of the components of the minimum corner of the box used to resize only one dimension of the box.
References Ogre::Vector3::x.
References Ogre::Vector3::y.
References Ogre::Vector3::z.
|
inline |
Sets the box to a 'null' value i.e.
not a box.
Returns the squared minimum distance between a given point and any part of the box.
This is faster than distance since avoiding a squareroot, so use if you can.
References Ogre::Vector3::x, Ogre::Vector3::y, and Ogre::Vector3::z.
Transforms the box according to the matrix supplied.
Transforms the box according to the affine matrix supplied.
References Ogre::Math::Abs(), Ogre::Matrix4::isAffine(), and Ogre::Matrix4::transformAffine().
Calculate the volume of this box.
References Ogre::Math::POS_INFINITY.
|
friend |
|
static |
|
static |