diff options
author | prep linden <prep@lindenlab.com> | 2011-01-14 15:30:57 -0500 |
---|---|---|
committer | prep linden <prep@lindenlab.com> | 2011-01-14 15:30:57 -0500 |
commit | eec6071766e6fef7015610b002a9bcb09ce36836 (patch) | |
tree | 4f63bb1629b5295a1de10d1a014b5297a6cf34cc /indra/llmath/llbbox.cpp | |
parent | a678ff80af6c48d4232c52aa505b633a1fc22663 (diff) | |
parent | 645da31dd70834dd67a854b3775529154e538d7f (diff) |
merge
Diffstat (limited to 'indra/llmath/llbbox.cpp')
-rw-r--r-- | indra/llmath/llbbox.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/indra/llmath/llbbox.cpp b/indra/llmath/llbbox.cpp index b46a6e03d2..3e2c05a6e6 100644 --- a/indra/llmath/llbbox.cpp +++ b/indra/llmath/llbbox.cpp @@ -89,6 +89,19 @@ void LLBBox::addBBoxAgent(const LLBBox& b) } } +LLBBox LLBBox::getAxisAligned() const +{ + // no rotation = axis aligned rotation + LLBBox aligned(mPosAgent, LLQuaternion(), LLVector3(), LLVector3()); + + // add the center point so that it's not empty + aligned.addPointAgent(mPosAgent); + + // add our BBox + aligned.addBBoxAgent(*this); + + return aligned; +} void LLBBox::expand( F32 delta ) { @@ -147,6 +160,15 @@ BOOL LLBBox::containsPointAgent(const LLVector3& p) const return containsPointLocal(point_local); } +LLVector3 LLBBox::getMinAgent() const +{ + return localToAgent(mMinLocal); +} + +LLVector3 LLBBox::getMaxAgent() const +{ + return localToAgent(mMaxLocal); +} /* LLBBox operator*(const LLBBox &a, const LLMatrix4 &b) |