diff options
| author | Richard Linden <none@none> | 2013-01-18 16:02:03 -0800 |
|---|---|---|
| committer | Richard Linden <none@none> | 2013-01-18 16:02:03 -0800 |
| commit | a4d01f05e054eb0f7cbe2621548429cea70ffe26 (patch) | |
| tree | ccf47ea062bb77c2166e826d85c104bc3a17e798 /indra/newview/llagent.cpp | |
| parent | e975ae35ab57f56adfaed64bc108240a5013f040 (diff) | |
| parent | 033e96259912b1bfaa96529386bf255fab24c17f (diff) | |
Automated merge with ssh://hg.lindenlab.com/richard/viewer-interesting-metrics
Diffstat (limited to 'indra/newview/llagent.cpp')
| -rwxr-xr-x | indra/newview/llagent.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 14235bcee4..24c9da8e17 100755 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -1046,6 +1046,14 @@ const LLVector3d &LLAgent::getPositionGlobal() const return mPositionGlobal; } +bool LLAgent::isPositionChanged() const +{ + LLVector3d diff; + diff = mPositionGlobal - mLastPositionGlobal; + + return diff.lengthSquared() > 1.0; +} + //----------------------------------------------------------------------------- // getPositionAgent() //----------------------------------------------------------------------------- |
