aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorlbsa712007-08-06 14:56:32 +0000
committerlbsa712007-08-06 14:56:32 +0000
commite155dcd432a56f4dc2253fb487433d8327e259bc (patch)
tree758c188e560c3bda0dce2131065d7ec03547c582 /OpenSim
parent* commands are done foreach instead of by [i] (diff)
downloadopensim-SC_OLD-e155dcd432a56f4dc2253fb487433d8327e259bc.zip
opensim-SC_OLD-e155dcd432a56f4dc2253fb487433d8327e259bc.tar.gz
opensim-SC_OLD-e155dcd432a56f4dc2253fb487433d8327e259bc.tar.bz2
opensim-SC_OLD-e155dcd432a56f4dc2253fb487433d8327e259bc.tar.xz
* yet another mini-shape-commit
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Framework/General/Types/PrimitiveBaseShape.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs b/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs
index 340947b..41a58fe 100644
--- a/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs
+++ b/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs
@@ -17,6 +17,8 @@ namespace OpenSim.Framework.Types
17 // Unknown 17 // Unknown
18 //} 18 //}
19 19
20
21
20 public class PrimitiveBaseShape 22 public class PrimitiveBaseShape
21 { 23 {
22 //protected ShapeType m_type = ShapeType.Unknown; 24 //protected ShapeType m_type = ShapeType.Unknown;
@@ -86,6 +88,25 @@ namespace OpenSim.Framework.Types
86 } 88 }
87 } 89 }
88 90
91 enum ProfileShape
92 {
93 Circle = 0,
94 Square = 1,
95 IsometricTriangle = 2,
96 EquilateralTriangle = 3,
97 RightTriangle = 4,
98 HalfCircle = 5
99 }
100
101 public class GenericShape : PrimitiveBaseShape
102 {
103
104 public GenericShape() : base()
105 {
106
107 }
108 }
109
89 public class BoxShape : PrimitiveBaseShape 110 public class BoxShape : PrimitiveBaseShape
90 { 111 {
91 public BoxShape() : base() 112 public BoxShape() : base()