mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
* yet another mini-shape-commit
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user