From e155dcd432a56f4dc2253fb487433d8327e259bc Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 6 Aug 2007 14:56:32 +0000 Subject: * yet another mini-shape-commit --- .../Framework/General/Types/PrimitiveBaseShape.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'OpenSim/Framework/General/Types/PrimitiveBaseShape.cs') 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 // 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() -- cgit v1.1