aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-07-31 00:44:23 +0100
committerJustin Clark-Casey (justincc)2011-07-31 00:44:23 +0100
commit454312f5bc7e301d44e37f56a1078b8ff020bf5d (patch)
tree003a034efdfef7c995c7b670151ddc8ae9fced87 /OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
parentminor: method doc (diff)
downloadopensim-SC_OLD-454312f5bc7e301d44e37f56a1078b8ff020bf5d.zip
opensim-SC_OLD-454312f5bc7e301d44e37f56a1078b8ff020bf5d.tar.gz
opensim-SC_OLD-454312f5bc7e301d44e37f56a1078b8ff020bf5d.tar.bz2
opensim-SC_OLD-454312f5bc7e301d44e37f56a1078b8ff020bf5d.tar.xz
refactor: rename CreateGeom _mesh argument to mesh, so as to not confuse this with the pre-existing _mesh field
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODEPrim.cs')
-rw-r--r--OpenSim/Region/Physics/OdePlugin/ODEPrim.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
index e91ee51..905522d 100644
--- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
+++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs
@@ -1358,14 +1358,14 @@ Console.WriteLine("ZProcessTaints for " + Name);
1358 /// </summary> 1358 /// </summary>
1359 /// <param name="m_targetSpace"></param> 1359 /// <param name="m_targetSpace"></param>
1360 /// <param name="_mesh">/param> 1360 /// <param name="_mesh">/param>
1361 public void CreateGeom(IntPtr m_targetSpace, IMesh _mesh) 1361 public void CreateGeom(IntPtr m_targetSpace, IMesh mesh)
1362 { 1362 {
1363#if SPAM 1363#if SPAM
1364Console.WriteLine("CreateGeom:"); 1364Console.WriteLine("CreateGeom:");
1365#endif 1365#endif
1366 if (_mesh != null) 1366 if (mesh != null)
1367 { 1367 {
1368 setMesh(_parent_scene, _mesh); 1368 setMesh(_parent_scene, mesh);
1369 } 1369 }
1370 else 1370 else
1371 { 1371 {