diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/General/Types/PrimitiveBaseShape.cs | 21 |
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() |