diff options
author | UbitUmarov | 2012-10-04 08:14:52 +0100 |
---|---|---|
committer | UbitUmarov | 2012-10-04 08:14:52 +0100 |
commit | 89d342b5ce9ac5d9fc4fd493eead8e050f99c91a (patch) | |
tree | d3065f478fc17ed546b7e0a610f6b0e921e6e3e8 /OpenSim/Region/Physics/UbitMeshing/Mesh.cs | |
parent | apply cmic fix to multi layer wearables (diff) | |
download | opensim-SC_OLD-89d342b5ce9ac5d9fc4fd493eead8e050f99c91a.zip opensim-SC_OLD-89d342b5ce9ac5d9fc4fd493eead8e050f99c91a.tar.gz opensim-SC_OLD-89d342b5ce9ac5d9fc4fd493eead8e050f99c91a.tar.bz2 opensim-SC_OLD-89d342b5ce9ac5d9fc4fd493eead8e050f99c91a.tar.xz |
more changes and more non active code
Diffstat (limited to 'OpenSim/Region/Physics/UbitMeshing/Mesh.cs')
-rw-r--r-- | OpenSim/Region/Physics/UbitMeshing/Mesh.cs | 10 |
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 | ||