aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager/IMesher.cs
diff options
context:
space:
mode:
authorJeff Ames2007-11-11 09:19:21 +0000
committerJeff Ames2007-11-11 09:19:21 +0000
commitdb174dfa2061ce35b657cd8f119f1176b53c6207 (patch)
tree7ff889f817ab0ebac5a90c6adbecf4a263239a73 /OpenSim/Region/Physics/Manager/IMesher.cs
parentfixed chatting while sitting (diff)
downloadopensim-SC_OLD-db174dfa2061ce35b657cd8f119f1176b53c6207.zip
opensim-SC_OLD-db174dfa2061ce35b657cd8f119f1176b53c6207.tar.gz
opensim-SC_OLD-db174dfa2061ce35b657cd8f119f1176b53c6207.tar.bz2
opensim-SC_OLD-db174dfa2061ce35b657cd8f119f1176b53c6207.tar.xz
set svn:eol-style
Diffstat (limited to 'OpenSim/Region/Physics/Manager/IMesher.cs')
-rw-r--r--OpenSim/Region/Physics/Manager/IMesher.cs52
1 files changed, 26 insertions, 26 deletions
diff --git a/OpenSim/Region/Physics/Manager/IMesher.cs b/OpenSim/Region/Physics/Manager/IMesher.cs
index 037616c..be3b272 100644
--- a/OpenSim/Region/Physics/Manager/IMesher.cs
+++ b/OpenSim/Region/Physics/Manager/IMesher.cs
@@ -1,26 +1,26 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4 4
5using OpenSim.Framework; 5using OpenSim.Framework;
6 6
7namespace OpenSim.Region.Physics.Manager 7namespace OpenSim.Region.Physics.Manager
8{ 8{
9 public interface IMesher 9 public interface IMesher
10 { 10 {
11 IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, PhysicsVector size); 11 IMesh CreateMesh(String primName, PrimitiveBaseShape primShape, PhysicsVector size);
12 } 12 }
13 13
14 public interface IVertex { 14 public interface IVertex {
15 } 15 }
16 16
17 public interface IMesh 17 public interface IMesh
18 { 18 {
19 List<PhysicsVector> getVertexList(); 19 List<PhysicsVector> getVertexList();
20 int[] getIndexListAsInt(); 20 int[] getIndexListAsInt();
21 int[] getIndexListAsIntLocked(); 21 int[] getIndexListAsIntLocked();
22 float[] getVertexListAsFloatLocked(); 22 float[] getVertexListAsFloatLocked();
23 23
24 24
25 } 25 }
26} 26}