aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/sLLVector3.cs
diff options
context:
space:
mode:
authorJeff Ames2007-12-08 10:04:06 +0000
committerJeff Ames2007-12-08 10:04:06 +0000
commit5e089114005c25362b5f40573ecd8ec627409e6e (patch)
tree9aeb7c78ad57e2ed69738a49d5141b6a52700ec4 /OpenSim/Framework/sLLVector3.cs
parent* All remoting calls are now using Serializable values (diff)
downloadopensim-SC_OLD-5e089114005c25362b5f40573ecd8ec627409e6e.zip
opensim-SC_OLD-5e089114005c25362b5f40573ecd8ec627409e6e.tar.gz
opensim-SC_OLD-5e089114005c25362b5f40573ecd8ec627409e6e.tar.bz2
opensim-SC_OLD-5e089114005c25362b5f40573ecd8ec627409e6e.tar.xz
set svn:eol-style
Diffstat (limited to 'OpenSim/Framework/sLLVector3.cs')
-rw-r--r--OpenSim/Framework/sLLVector3.cs50
1 files changed, 25 insertions, 25 deletions
diff --git a/OpenSim/Framework/sLLVector3.cs b/OpenSim/Framework/sLLVector3.cs
index 25a9015..a29df27 100644
--- a/OpenSim/Framework/sLLVector3.cs
+++ b/OpenSim/Framework/sLLVector3.cs
@@ -1,25 +1,25 @@
1using System; 1using System;
2using libsecondlife; 2using libsecondlife;
3 3
4 4
5namespace OpenSim.Framework 5namespace OpenSim.Framework
6{ 6{
7 [Serializable] 7 [Serializable]
8 public class sLLVector3 8 public class sLLVector3
9 { 9 {
10 public sLLVector3() 10 public sLLVector3()
11 { 11 {
12 12
13 } 13 }
14 public sLLVector3(LLVector3 v) 14 public sLLVector3(LLVector3 v)
15 { 15 {
16 x = v.X; 16 x = v.X;
17 y = v.Y; 17 y = v.Y;
18 z = v.Z; 18 z = v.Z;
19 } 19 }
20 public float x; 20 public float x;
21 public float y; 21 public float y;
22 public float z; 22 public float z;
23 } 23 }
24 24
25} 25}