From 9c13a93583a71fa4193743c89e6a2d9b7c2b463a Mon Sep 17 00:00:00 2001 From: Dahlia Trimble Date: Fri, 24 Apr 2009 19:28:29 +0000 Subject: Limit hollow size of physics proxy to 95% --- OpenSim/Region/Physics/Meshing/PrimMesher.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Physics/Meshing/PrimMesher.cs') 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 this.profileEnd = 0.02f; if (profileStart >= profileEnd) this.profileStart = profileEnd - 0.02f; - if (hollow > 1.0f) - this.hollow = 1.0f; + if (hollow > 0.99f) + this.hollow = 0.99f; if (hollow < 0.0f) this.hollow = 0.0f; -- cgit v1.1