aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs
diff options
context:
space:
mode:
authorUbitUmarov2013-05-29 20:23:52 +0100
committerUbitUmarov2013-05-29 20:23:52 +0100
commit4709436a6ca5daecad3f0835fd6c4921df7a5339 (patch)
tree4724f445bc03bacdbf329c0f7a9d4fc7e41dbda6 /OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs
parent removed spurius ref to ode.dll from odeapi (diff)
downloadopensim-SC_OLD-4709436a6ca5daecad3f0835fd6c4921df7a5339.zip
opensim-SC_OLD-4709436a6ca5daecad3f0835fd6c4921df7a5339.tar.gz
opensim-SC_OLD-4709436a6ca5daecad3f0835fd6c4921df7a5339.tar.bz2
opensim-SC_OLD-4709436a6ca5daecad3f0835fd6c4921df7a5339.tar.xz
retouch prim stopped condition test
Diffstat (limited to 'OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs')
-rw-r--r--OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs
index c247e68..4cac0aa 100644
--- a/OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs
+++ b/OpenSim/Region/Physics/UbitOdePlugin/ODEPrim.cs
@@ -3534,9 +3534,9 @@ namespace OpenSim.Region.Physics.OdePlugin
3534 (Math.Abs(_position.X - lpos.X) < 0.005f) 3534 (Math.Abs(_position.X - lpos.X) < 0.005f)
3535 && (Math.Abs(_position.Y - lpos.Y) < 0.005f) 3535 && (Math.Abs(_position.Y - lpos.Y) < 0.005f)
3536 && (Math.Abs(_position.Z - lpos.Z) < 0.005f) 3536 && (Math.Abs(_position.Z - lpos.Z) < 0.005f)
3537 && (Math.Abs(_orientation.X - ori.X) < 0.001f) 3537 && (Math.Abs(_orientation.X - ori.X) < 0.0005f)
3538 && (Math.Abs(_orientation.Y - ori.Y) < 0.001f) 3538 && (Math.Abs(_orientation.Y - ori.Y) < 0.0005f)
3539 && (Math.Abs(_orientation.Z - ori.Z) < 0.001f) // ignore W 3539 && (Math.Abs(_orientation.Z - ori.Z) < 0.0005f) // ignore W
3540 ) 3540 )
3541 { 3541 {
3542 _zeroFlag = true; 3542 _zeroFlag = true;