diff options
author | gareth | 2007-03-22 10:11:15 +0000 |
---|---|---|
committer | gareth | 2007-03-22 10:11:15 +0000 |
commit | 7daa3955bc3a1918e40962851f9e8d38597a245e (patch) | |
tree | bee3e1372a7eed0c1b220a8a49f7bee7d29a6b91 /OpenSim.Framework/PrimData.cs | |
parent | Load XML for neighbourinfo from grid (diff) | |
download | opensim-SC_OLD-7daa3955bc3a1918e40962851f9e8d38597a245e.zip opensim-SC_OLD-7daa3955bc3a1918e40962851f9e8d38597a245e.tar.gz opensim-SC_OLD-7daa3955bc3a1918e40962851f9e8d38597a245e.tar.bz2 opensim-SC_OLD-7daa3955bc3a1918e40962851f9e8d38597a245e.tar.xz |
brought zircon branch into trunk
Diffstat (limited to 'OpenSim.Framework/PrimData.cs')
-rw-r--r-- | OpenSim.Framework/PrimData.cs | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/OpenSim.Framework/PrimData.cs b/OpenSim.Framework/PrimData.cs new file mode 100644 index 0000000..175a014 --- /dev/null +++ b/OpenSim.Framework/PrimData.cs | |||
@@ -0,0 +1,45 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | |||
6 | namespace OpenSim.Framework.Assets | ||
7 | { | ||
8 | public class PrimData | ||
9 | { | ||
10 | public LLUUID OwnerID; | ||
11 | public byte PCode; | ||
12 | public byte PathBegin; | ||
13 | public byte PathEnd; | ||
14 | public byte PathScaleX; | ||
15 | public byte PathScaleY; | ||
16 | public byte PathShearX; | ||
17 | public byte PathShearY; | ||
18 | public sbyte PathSkew; | ||
19 | public byte ProfileBegin; | ||
20 | public byte ProfileEnd; | ||
21 | public LLVector3 Scale; | ||
22 | public byte PathCurve; | ||
23 | public byte ProfileCurve; | ||
24 | public uint ParentID = 0; | ||
25 | public byte ProfileHollow; | ||
26 | public sbyte PathRadiusOffset; | ||
27 | public byte PathRevolutions; | ||
28 | public sbyte PathTaperX; | ||
29 | public sbyte PathTaperY; | ||
30 | public sbyte PathTwist; | ||
31 | public sbyte PathTwistBegin; | ||
32 | public byte[] Texture; | ||
33 | |||
34 | //following only used during prim storage | ||
35 | public LLVector3 Position; | ||
36 | public LLQuaternion Rotation; | ||
37 | public uint LocalID; | ||
38 | public LLUUID FullID; | ||
39 | |||
40 | public PrimData() | ||
41 | { | ||
42 | |||
43 | } | ||
44 | } | ||
45 | } | ||