diff options
author | Diva Canto | 2015-08-30 20:29:31 -0700 |
---|---|---|
committer | Diva Canto | 2015-08-30 20:29:31 -0700 |
commit | 2c0cad6dd3014e9ad363090f5f7872c43daffcbd (patch) | |
tree | ecd1878145bfef77eb3c9b4ee1c4f767e29b983e /OpenSim/Region/PhysicsModules/Meshing | |
parent | Major renaming of Physics dlls / folders. No functional changes, just renames. (diff) | |
download | opensim-SC_OLD-2c0cad6dd3014e9ad363090f5f7872c43daffcbd.zip opensim-SC_OLD-2c0cad6dd3014e9ad363090f5f7872c43daffcbd.tar.gz opensim-SC_OLD-2c0cad6dd3014e9ad363090f5f7872c43daffcbd.tar.bz2 opensim-SC_OLD-2c0cad6dd3014e9ad363090f5f7872c43daffcbd.tar.xz |
Renamed the namespaces too
Diffstat (limited to 'OpenSim/Region/PhysicsModules/Meshing')
-rw-r--r-- | OpenSim/Region/PhysicsModules/Meshing/HelperTypes.cs | 4 | ||||
-rw-r--r-- | OpenSim/Region/PhysicsModules/Meshing/Mesh.cs | 4 | ||||
-rw-r--r-- | OpenSim/Region/PhysicsModules/Meshing/Meshmerizer.cs | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/PhysicsModules/Meshing/HelperTypes.cs b/OpenSim/Region/PhysicsModules/Meshing/HelperTypes.cs index 8cd8dcf..2f857ee 100644 --- a/OpenSim/Region/PhysicsModules/Meshing/HelperTypes.cs +++ b/OpenSim/Region/PhysicsModules/Meshing/HelperTypes.cs | |||
@@ -30,8 +30,8 @@ using System.Collections.Generic; | |||
30 | using System.Diagnostics; | 30 | using System.Diagnostics; |
31 | using System.Globalization; | 31 | using System.Globalization; |
32 | using OpenMetaverse; | 32 | using OpenMetaverse; |
33 | using OpenSim.Region.Physics.Manager; | 33 | using OpenSim.Region.PhysicsModule.SharedBase; |
34 | using OpenSim.Region.Physics.Meshing; | 34 | using OpenSim.Region.PhysicsModule.Meshing; |
35 | 35 | ||
36 | public class Vertex : IComparable<Vertex> | 36 | public class Vertex : IComparable<Vertex> |
37 | { | 37 | { |
diff --git a/OpenSim/Region/PhysicsModules/Meshing/Mesh.cs b/OpenSim/Region/PhysicsModules/Meshing/Mesh.cs index bd8e306..1a8574e 100644 --- a/OpenSim/Region/PhysicsModules/Meshing/Mesh.cs +++ b/OpenSim/Region/PhysicsModules/Meshing/Mesh.cs | |||
@@ -29,11 +29,11 @@ using System; | |||
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.IO; | 30 | using System.IO; |
31 | using System.Runtime.InteropServices; | 31 | using System.Runtime.InteropServices; |
32 | using OpenSim.Region.Physics.Manager; | 32 | using OpenSim.Region.PhysicsModule.SharedBase; |
33 | using PrimMesher; | 33 | using PrimMesher; |
34 | using OpenMetaverse; | 34 | using OpenMetaverse; |
35 | 35 | ||
36 | namespace OpenSim.Region.Physics.Meshing | 36 | namespace OpenSim.Region.PhysicsModule.Meshing |
37 | { | 37 | { |
38 | public class Mesh : IMesh | 38 | public class Mesh : IMesh |
39 | { | 39 | { |
diff --git a/OpenSim/Region/PhysicsModules/Meshing/Meshmerizer.cs b/OpenSim/Region/PhysicsModules/Meshing/Meshmerizer.cs index 42231b5..c885665 100644 --- a/OpenSim/Region/PhysicsModules/Meshing/Meshmerizer.cs +++ b/OpenSim/Region/PhysicsModules/Meshing/Meshmerizer.cs | |||
@@ -29,7 +29,7 @@ | |||
29 | using System; | 29 | using System; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
32 | using OpenSim.Region.Physics.Manager; | 32 | using OpenSim.Region.PhysicsModule.SharedBase; |
33 | using OpenMetaverse; | 33 | using OpenMetaverse; |
34 | using OpenMetaverse.StructuredData; | 34 | using OpenMetaverse.StructuredData; |
35 | using System.Drawing; | 35 | using System.Drawing; |
@@ -41,7 +41,7 @@ using Nini.Config; | |||
41 | using System.Reflection; | 41 | using System.Reflection; |
42 | using System.IO; | 42 | using System.IO; |
43 | 43 | ||
44 | namespace OpenSim.Region.Physics.Meshing | 44 | namespace OpenSim.Region.PhysicsModule.Meshing |
45 | { | 45 | { |
46 | public class MeshmerizerPlugin : IMeshingPlugin | 46 | public class MeshmerizerPlugin : IMeshingPlugin |
47 | { | 47 | { |