diff options
Diffstat (limited to 'OpenSim/Region/Physics/Manager/ZeroMesher.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/ZeroMesher.cs | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/OpenSim/Region/Physics/Manager/ZeroMesher.cs b/OpenSim/Region/Physics/Manager/ZeroMesher.cs index a88656e..7dae4ac 100644 --- a/OpenSim/Region/Physics/Manager/ZeroMesher.cs +++ b/OpenSim/Region/Physics/Manager/ZeroMesher.cs | |||
@@ -27,11 +27,8 @@ | |||
27 | */ | 27 | */ |
28 | 28 | ||
29 | using System; | 29 | using System; |
30 | using System.Collections.Generic; | ||
31 | using System.Text; | ||
32 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
33 | 31 | ||
34 | |||
35 | /* | 32 | /* |
36 | * This is the zero mesher. | 33 | * This is the zero mesher. |
37 | * Whatever you want him to mesh, he can't, telling you that by responding with a null pointer. | 34 | * Whatever you want him to mesh, he can't, telling you that by responding with a null pointer. |
@@ -62,13 +59,11 @@ namespace OpenSim.Region.Physics.Manager | |||
62 | } | 59 | } |
63 | } | 60 | } |
64 | 61 | ||
65 | public class ZeroMesher: IMesher | 62 | public class ZeroMesher : IMesher |
66 | { | 63 | { |
67 | |||
68 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, PhysicsVector size) | 64 | public IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, PhysicsVector size) |
69 | { | 65 | { |
70 | return null; | 66 | return null; |
71 | } | 67 | } |
72 | } | 68 | } |
73 | 69 | } \ No newline at end of file | |
74 | } | ||