diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-04-13 14:28:19 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-04-13 14:28:19 +0100 |
commit | f7134144a6ed8f5710d02a84ad3ad5dc29cb0bd5 (patch) | |
tree | 74e5b64a835e388f7dcc4ff66133a8c226b00d8c /indra/llcharacter | |
parent | cc73a1958d14be9094c4bc301e61ed45f4c575e8 (diff) |
MAINT-8239 - joint offsets
Diffstat (limited to 'indra/llcharacter')
-rw-r--r-- | indra/llcharacter/lljoint.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/llcharacter/lljoint.h b/indra/llcharacter/lljoint.h index 0c8fbfebb0..8112d246f2 100644 --- a/indra/llcharacter/lljoint.h +++ b/indra/llcharacter/lljoint.h @@ -70,6 +70,16 @@ private: map_type m_map; }; +inline bool operator==(const LLVector3OverrideMap& a, const LLVector3OverrideMap& b) +{ + return a.getMap() == b.getMap(); +} + +inline bool operator!=(const LLVector3OverrideMap& a, const LLVector3OverrideMap& b) +{ + return !(a == b); +} + //----------------------------------------------------------------------------- // class LLJoint //----------------------------------------------------------------------------- |