diff options
author | Justin Clark-Casey (justincc) | 2011-07-31 00:44:23 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-07-31 00:44:23 +0100 |
commit | 454312f5bc7e301d44e37f56a1078b8ff020bf5d (patch) | |
tree | 003a034efdfef7c995c7b670151ddc8ae9fced87 /OpenSim/Region | |
parent | minor: method doc (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODEPrim.cs | 6 |
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 |
1364 | Console.WriteLine("CreateGeom:"); | 1364 | Console.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 | { |