diff options
author | Justin Clarke Casey | 2008-08-30 18:09:38 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-08-30 18:09:38 +0000 |
commit | 49ec6dd8826aa4e5a022808572abb327e279a06e (patch) | |
tree | 7490e83cd27a3170a9cee98d776a84a109df7b12 /OpenSim/Region/Physics | |
parent | * Remove unused OpenSim/Framework/RegionHandle.cs as per Homer's suggestion i... (diff) | |
download | opensim-SC_OLD-49ec6dd8826aa4e5a022808572abb327e279a06e.zip opensim-SC_OLD-49ec6dd8826aa4e5a022808572abb327e279a06e.tar.gz opensim-SC_OLD-49ec6dd8826aa4e5a022808572abb327e279a06e.tar.bz2 opensim-SC_OLD-49ec6dd8826aa4e5a022808572abb327e279a06e.tar.xz |
* squash some obvious warnings
* a couple more remain that preferably the original coders should look at in more detail (obsolete warnings in the ogp module and not overriding warnings in the script
engine)
Diffstat (limited to 'OpenSim/Region/Physics')
-rw-r--r-- | OpenSim/Region/Physics/Meshing/Mesh.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/Meshing/Mesh.cs b/OpenSim/Region/Physics/Meshing/Mesh.cs index 16ac453..2084e75 100644 --- a/OpenSim/Region/Physics/Meshing/Mesh.cs +++ b/OpenSim/Region/Physics/Meshing/Mesh.cs | |||
@@ -214,9 +214,9 @@ namespace OpenSim.Region.Physics.Meshing | |||
214 | for (int i = 0; i < numFaces; i++) | 214 | for (int i = 0; i < numFaces; i++) |
215 | { | 215 | { |
216 | Face f = primMesh.faces[i]; | 216 | Face f = primMesh.faces[i]; |
217 | Coord c1 = primMesh.coords[f.v1]; | 217 | // Coord c1 = primMesh.coords[f.v1]; |
218 | Coord c2 = primMesh.coords[f.v2]; | 218 | // Coord c2 = primMesh.coords[f.v2]; |
219 | Coord c3 = primMesh.coords[f.v3]; | 219 | // Coord c3 = primMesh.coords[f.v3]; |
220 | 220 | ||
221 | int resultIndex = i * 3; | 221 | int resultIndex = i * 3; |
222 | result[resultIndex] = f.v1; | 222 | result[resultIndex] = f.v1; |