aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
diff options
context:
space:
mode:
authorDahlia Trimble2009-04-24 19:28:29 +0000
committerDahlia Trimble2009-04-24 19:28:29 +0000
commit9c13a93583a71fa4193743c89e6a2d9b7c2b463a (patch)
tree3c40339e243dc819ca9b83326e4847c7e6d3680d /OpenSim/Region/Physics/Meshing/Meshmerizer.cs
parent* minor: move user profile test utils to test/common/setup for future reuse (diff)
downloadopensim-SC_OLD-9c13a93583a71fa4193743c89e6a2d9b7c2b463a.zip
opensim-SC_OLD-9c13a93583a71fa4193743c89e6a2d9b7c2b463a.tar.gz
opensim-SC_OLD-9c13a93583a71fa4193743c89e6a2d9b7c2b463a.tar.bz2
opensim-SC_OLD-9c13a93583a71fa4193743c89e6a2d9b7c2b463a.tar.xz
Limit hollow size of physics proxy to 95%
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/Meshing/Meshmerizer.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
index 1d1067c..3e14fc4 100644
--- a/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
+++ b/OpenSim/Region/Physics/Meshing/Meshmerizer.cs
@@ -251,6 +251,8 @@ namespace OpenSim.Region.Physics.Meshing
251 float profileBegin = (float)primShape.ProfileBegin * 2.0e-5f; 251 float profileBegin = (float)primShape.ProfileBegin * 2.0e-5f;
252 float profileEnd = 1.0f - (float)primShape.ProfileEnd * 2.0e-5f; 252 float profileEnd = 1.0f - (float)primShape.ProfileEnd * 2.0e-5f;
253 float profileHollow = (float)primShape.ProfileHollow * 2.0e-5f; 253 float profileHollow = (float)primShape.ProfileHollow * 2.0e-5f;
254 if (profileHollow > 0.95f)
255 profileHollow = 0.95f;
254 256
255 int sides = 4; 257 int sides = 4;
256 if ((primShape.ProfileCurve & 0x07) == (byte)ProfileShape.EquilateralTriangle) 258 if ((primShape.ProfileCurve & 0x07) == (byte)ProfileShape.EquilateralTriangle)