From fadf5b479fea038f129cf85e1fb02857d19ac38f Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Fri, 8 Feb 2008 23:28:38 +0000 Subject: * Added Taper support to the Meshmerizer for Cube and Cylinder. * Removed the hull verbosity --- OpenSim/Region/Physics/Meshing/SimpleHull.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'OpenSim/Region/Physics/Meshing/SimpleHull.cs') diff --git a/OpenSim/Region/Physics/Meshing/SimpleHull.cs b/OpenSim/Region/Physics/Meshing/SimpleHull.cs index 9209860..e9cce3b 100644 --- a/OpenSim/Region/Physics/Meshing/SimpleHull.cs +++ b/OpenSim/Region/Physics/Meshing/SimpleHull.cs @@ -245,9 +245,9 @@ namespace OpenSim.Region.Physics.Meshing SimpleHull otherHullClone = otherHull.Clone(); bool intersects = false; - m_log.Debug("State before intersection detection"); - m_log.Debug(String.Format("The baseHull is:\n{1}", 0, baseHullClone.ToString())); - m_log.Debug(String.Format("The otherHull is:\n{1}", 0, otherHullClone.ToString())); + //m_log.Debug("State before intersection detection"); + //m_log.Debug(String.Format("The baseHull is:\n{1}", 0, baseHullClone.ToString())); + //m_log.Debug(String.Format("The otherHull is:\n{1}", 0, otherHullClone.ToString())); { int iBase, iOther; @@ -276,8 +276,8 @@ namespace OpenSim.Region.Physics.Meshing } } - m_log.Debug("State after intersection detection for the base hull"); - m_log.Debug(String.Format("The baseHull is:\n{1}", 0, baseHullClone.ToString())); + //m_log.Debug("State after intersection detection for the base hull"); + //m_log.Debug(String.Format("The baseHull is:\n{1}", 0, baseHullClone.ToString())); { int iOther, iBase; @@ -305,8 +305,8 @@ namespace OpenSim.Region.Physics.Meshing } } - m_log.Debug("State after intersection detection for the base hull"); - m_log.Debug(String.Format("The otherHull is:\n{1}", 0, otherHullClone.ToString())); + //m_log.Debug("State after intersection detection for the base hull"); + //m_log.Debug(String.Format("The otherHull is:\n{1}", 0, otherHullClone.ToString())); bool otherIsInBase = baseHullClone.containsPointsFrom(otherHullClone); @@ -389,7 +389,7 @@ namespace OpenSim.Region.Physics.Meshing done = true; } - m_log.Debug(String.Format("The resulting Hull is:\n{1}", 0, result.ToString())); + //m_log.Debug(String.Format("The resulting Hull is:\n{1}", 0, result.ToString())); return result; } -- cgit v1.1