diff options
author | Jacek Antonelli | 2008-08-15 23:45:42 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:42 -0500 |
commit | ce28e056c20bf2723f565bbf464b87781ec248a2 (patch) | |
tree | ef7b0501c4de4b631a916305cbc2a5fdc125e52d /linden/indra/llmath/llrect.h | |
parent | Second Life viewer sources 1.19.1.4b (diff) | |
download | meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.zip meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.gz meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.bz2 meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.xz |
Second Life viewer sources 1.20.2
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmath/llrect.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linden/indra/llmath/llrect.h b/linden/indra/llmath/llrect.h index 9aadf9f..f2a5d75 100644 --- a/linden/indra/llmath/llrect.h +++ b/linden/indra/llmath/llrect.h | |||
@@ -227,6 +227,11 @@ public: | |||
227 | return mLeft == mRight || mBottom == mTop; | 227 | return mLeft == mRight || mBottom == mTop; |
228 | } | 228 | } |
229 | 229 | ||
230 | bool notNull() const | ||
231 | { | ||
232 | return !isNull(); | ||
233 | } | ||
234 | |||
230 | LLRectBase& unionWith(const LLRectBase &other) | 235 | LLRectBase& unionWith(const LLRectBase &other) |
231 | { | 236 | { |
232 | mLeft = llmin(mLeft, other.mLeft); | 237 | mLeft = llmin(mLeft, other.mLeft); |