diff options
author | lbsa71 | 2007-12-27 21:41:48 +0000 |
---|---|---|
committer | lbsa71 | 2007-12-27 21:41:48 +0000 |
commit | efd90b56b761219af6425b1c7a2cdd3b6ffb4de2 (patch) | |
tree | bf5b897e1e3c13211e3e2fc61d30508b94c928c0 /OpenSim/Region/Physics/Manager/IMesher.cs | |
parent | * removed always true if (diff) | |
download | opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.zip opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.gz opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.bz2 opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.xz |
* Optimized usings
* shortened references
* Removed redundant 'this'
* Normalized EOF
Diffstat (limited to 'OpenSim/Region/Physics/Manager/IMesher.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/IMesher.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/OpenSim/Region/Physics/Manager/IMesher.cs b/OpenSim/Region/Physics/Manager/IMesher.cs index 1648a98..80b3320 100644 --- a/OpenSim/Region/Physics/Manager/IMesher.cs +++ b/OpenSim/Region/Physics/Manager/IMesher.cs | |||
@@ -28,8 +28,6 @@ | |||
28 | 28 | ||
29 | using System; | 29 | using System; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Text; | ||
32 | |||
33 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
34 | 32 | ||
35 | namespace OpenSim.Region.Physics.Manager | 33 | namespace OpenSim.Region.Physics.Manager |
@@ -39,7 +37,8 @@ namespace OpenSim.Region.Physics.Manager | |||
39 | IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, PhysicsVector size); | 37 | IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, PhysicsVector size); |
40 | } | 38 | } |
41 | 39 | ||
42 | public interface IVertex { | 40 | public interface IVertex |
41 | { | ||
43 | } | 42 | } |
44 | 43 | ||
45 | public interface IMesh | 44 | public interface IMesh |
@@ -48,7 +47,5 @@ namespace OpenSim.Region.Physics.Manager | |||
48 | int[] getIndexListAsInt(); | 47 | int[] getIndexListAsInt(); |
49 | int[] getIndexListAsIntLocked(); | 48 | int[] getIndexListAsIntLocked(); |
50 | float[] getVertexListAsFloatLocked(); | 49 | float[] getVertexListAsFloatLocked(); |
51 | |||
52 | |||
53 | } | 50 | } |
54 | } | 51 | } \ No newline at end of file |