aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs94
1 files changed, 47 insertions, 47 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs
index ed24680..0018b2a 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Object/IObjectShape.cs
@@ -1,48 +1,48 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4using OpenMetaverse; 4using OpenMetaverse;
5 5
6namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Object 6namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Object
7{ 7{
8 public enum SculptType 8 public enum SculptType
9 { 9 {
10 Default = 1, 10 Default = 1,
11 Sphere = 1, 11 Sphere = 1,
12 Torus = 2, 12 Torus = 2,
13 Plane = 3, 13 Plane = 3,
14 Cylinder = 4 14 Cylinder = 4
15 } 15 }
16 16
17 public enum HoleShape 17 public enum HoleShape
18 { 18 {
19 Default = 0x00, 19 Default = 0x00,
20 Circle = 0x10, 20 Circle = 0x10,
21 Square = 0x20, 21 Square = 0x20,
22 Triangle = 0x30 22 Triangle = 0x30
23 } 23 }
24 24
25 public enum PrimType 25 public enum PrimType
26 { 26 {
27 NotPrimitive = 255, 27 NotPrimitive = 255,
28 Box = 0, 28 Box = 0,
29 Cylinder = 1, 29 Cylinder = 1,
30 Prism = 2, 30 Prism = 2,
31 Sphere = 3, 31 Sphere = 3,
32 Torus = 4, 32 Torus = 4,
33 Tube = 5, 33 Tube = 5,
34 Ring = 6, 34 Ring = 6,
35 Sculpt = 7 35 Sculpt = 7
36 } 36 }
37 37
38 public interface IObjectShape 38 public interface IObjectShape
39 { 39 {
40 UUID SculptMap { get; set; } 40 UUID SculptMap { get; set; }
41 SculptType SculptType { get; set; } 41 SculptType SculptType { get; set; }
42 42
43 HoleShape HoleType { get; set; } 43 HoleShape HoleType { get; set; }
44 Double HoleSize { get; set; } 44 Double HoleSize { get; set; }
45 PrimType PrimType { get; set; } 45 PrimType PrimType { get; set; }
46 46
47 } 47 }
48} \ No newline at end of file 48} \ No newline at end of file