diff options
author | Dahlia Trimble | 2009-04-24 19:28:29 +0000 |
---|---|---|
committer | Dahlia Trimble | 2009-04-24 19:28:29 +0000 |
commit | 9c13a93583a71fa4193743c89e6a2d9b7c2b463a (patch) | |
tree | 3c40339e243dc819ca9b83326e4847c7e6d3680d /OpenSim/Region/Physics/Meshing/PrimMesher.cs | |
parent | * minor: move user profile test utils to test/common/setup for future reuse (diff) | |
download | opensim-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 'OpenSim/Region/Physics/Meshing/PrimMesher.cs')
-rw-r--r-- | OpenSim/Region/Physics/Meshing/PrimMesher.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/Meshing/PrimMesher.cs b/OpenSim/Region/Physics/Meshing/PrimMesher.cs index c397290..ca16b63 100644 --- a/OpenSim/Region/Physics/Meshing/PrimMesher.cs +++ b/OpenSim/Region/Physics/Meshing/PrimMesher.cs | |||
@@ -1232,8 +1232,8 @@ namespace PrimMesher | |||
1232 | this.profileEnd = 0.02f; | 1232 | this.profileEnd = 0.02f; |
1233 | if (profileStart >= profileEnd) | 1233 | if (profileStart >= profileEnd) |
1234 | this.profileStart = profileEnd - 0.02f; | 1234 | this.profileStart = profileEnd - 0.02f; |
1235 | if (hollow > 1.0f) | 1235 | if (hollow > 0.99f) |
1236 | this.hollow = 1.0f; | 1236 | this.hollow = 0.99f; |
1237 | if (hollow < 0.0f) | 1237 | if (hollow < 0.0f) |
1238 | this.hollow = 0.0f; | 1238 | this.hollow = 0.0f; |
1239 | 1239 | ||