aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/UbitMeshing
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Physics/UbitMeshing')
-rw-r--r--OpenSim/Region/Physics/UbitMeshing/Mesh.cs10
1 files changed, 6 insertions, 4 deletions
diff --git a/OpenSim/Region/Physics/UbitMeshing/Mesh.cs b/OpenSim/Region/Physics/UbitMeshing/Mesh.cs
index 47e0cf4..c31ec08 100644
--- a/OpenSim/Region/Physics/UbitMeshing/Mesh.cs
+++ b/OpenSim/Region/Physics/UbitMeshing/Mesh.cs
@@ -89,8 +89,6 @@ namespace OpenSim.Region.Physics.Meshing
89 m_obbYmax = float.MinValue; 89 m_obbYmax = float.MinValue;
90 m_obbZmin = float.MaxValue; 90 m_obbZmin = float.MaxValue;
91 m_obbZmax = float.MinValue; 91 m_obbZmax = float.MinValue;
92
93
94 } 92 }
95 93
96 public int RefCount { get; set; } 94 public int RefCount { get; set; }
@@ -99,8 +97,6 @@ namespace OpenSim.Region.Physics.Meshing
99 97
100 public void Scale(Vector3 scale) 98 public void Scale(Vector3 scale)
101 { 99 {
102
103
104 } 100 }
105 101
106 public Mesh Clone() 102 public Mesh Clone()
@@ -113,6 +109,12 @@ namespace OpenSim.Region.Physics.Meshing
113 } 109 }
114 result.m_centroid = m_centroid; 110 result.m_centroid = m_centroid;
115 result.m_centroidDiv = m_centroidDiv; 111 result.m_centroidDiv = m_centroidDiv;
112 result.m_obbXmin = m_obbXmin;
113 result.m_obbXmax = m_obbXmax;
114 result.m_obbYmin = m_obbYmin;
115 result.m_obbYmax = m_obbYmax;
116 result.m_obbZmin = m_obbZmin;
117 result.m_obbZmax = m_obbZmax;
116 return result; 118 return result;
117 } 119 }
118 120