diff options
author | prep <prep@lindenlab.com> | 2011-07-20 14:05:13 -0400 |
---|---|---|
committer | prep <prep@lindenlab.com> | 2011-07-20 14:05:13 -0400 |
commit | c37603d9ce2be463b76f8f179177a79537bae399 (patch) | |
tree | 9c250a5bc62571e577ad09139a3d60fbf0154a86 /indra | |
parent | b730dd63dcc3701eb2e7c5f2972bc22e7a13fa80 (diff) |
fix for sh-1847: Removed assert when a vert is outside [-5,5] domain
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llprimitive/llmodel.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/indra/llprimitive/llmodel.cpp b/indra/llprimitive/llmodel.cpp index 434fb7650b..ea0ea931af 100644 --- a/indra/llprimitive/llmodel.cpp +++ b/indra/llprimitive/llmodel.cpp @@ -2329,8 +2329,6 @@ LLSD LLModel::Decomposition::asLLSD() const for (U32 k = 0; k < 3; k++) { - llassert(v[k] <= 0.51f && v[k] >= -0.51f); - //convert to 16-bit normalized across domain U16 val = (U16) (((v[k]-min.mV[k])/range.mV[k])*65535); |