diff options
author | Justin Clark-Casey (justincc) | 2009-11-09 17:43:32 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2009-11-09 17:43:32 +0000 |
commit | 3274bc39c8e0c477485c03b31acbe3a9bde0c37e (patch) | |
tree | 8dcb61509ddb335bb65b25f5d67ea538555e1f8c /OpenSim/Region/Physics/Meshing/PrimMesher.cs | |
parent | Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-3274bc39c8e0c477485c03b31acbe3a9bde0c37e.zip opensim-SC_OLD-3274bc39c8e0c477485c03b31acbe3a9bde0c37e.tar.gz opensim-SC_OLD-3274bc39c8e0c477485c03b31acbe3a9bde0c37e.tar.bz2 opensim-SC_OLD-3274bc39c8e0c477485c03b31acbe3a9bde0c37e.tar.xz |
minor: remove some mono compiler warnings
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 c7c9160..2a213c3 100644 --- a/OpenSim/Region/Physics/Meshing/PrimMesher.cs +++ b/OpenSim/Region/Physics/Meshing/PrimMesher.cs | |||
@@ -1348,7 +1348,7 @@ namespace PrimMesher | |||
1348 | float stepSize = twoPi / this.stepsPerRevolution; | 1348 | float stepSize = twoPi / this.stepsPerRevolution; |
1349 | 1349 | ||
1350 | int step = (int)(startAngle / stepSize); | 1350 | int step = (int)(startAngle / stepSize); |
1351 | int firstStep = step; | 1351 | // int firstStep = step; |
1352 | float angle = startAngle; | 1352 | float angle = startAngle; |
1353 | 1353 | ||
1354 | bool done = false; | 1354 | bool done = false; |
@@ -1738,7 +1738,7 @@ namespace PrimMesher | |||
1738 | // append this layer | 1738 | // append this layer |
1739 | 1739 | ||
1740 | int coordsLen = this.coords.Count; | 1740 | int coordsLen = this.coords.Count; |
1741 | int lastCoordsLen = coordsLen; | 1741 | // int lastCoordsLen = coordsLen; |
1742 | newLayer.AddValue2FaceVertexIndices(coordsLen); | 1742 | newLayer.AddValue2FaceVertexIndices(coordsLen); |
1743 | 1743 | ||
1744 | this.coords.AddRange(newLayer.coords); | 1744 | this.coords.AddRange(newLayer.coords); |