From e155dcd432a56f4dc2253fb487433d8327e259bc Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 6 Aug 2007 14:56:32 +0000 Subject: [PATCH] * yet another mini-shape-commit --- .../General/Types/PrimitiveBaseShape.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs b/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs index 340947b124..41a58fed7b 100644 --- a/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs +++ b/OpenSim/Framework/General/Types/PrimitiveBaseShape.cs @@ -17,6 +17,8 @@ namespace OpenSim.Framework.Types // Unknown //} + + public class PrimitiveBaseShape { //protected ShapeType m_type = ShapeType.Unknown; @@ -86,6 +88,25 @@ namespace OpenSim.Framework.Types } } + enum ProfileShape + { + Circle = 0, + Square = 1, + IsometricTriangle = 2, + EquilateralTriangle = 3, + RightTriangle = 4, + HalfCircle = 5 + } + + public class GenericShape : PrimitiveBaseShape + { + + public GenericShape() : base() + { + + } + } + public class BoxShape : PrimitiveBaseShape { public BoxShape() : base()