aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/sLLVector3.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/sLLVector3.cs')
-rw-r--r--OpenSim/Framework/sLLVector3.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Framework/sLLVector3.cs b/OpenSim/Framework/sLLVector3.cs
index dca94b5..c0bafb2 100644
--- a/OpenSim/Framework/sLLVector3.cs
+++ b/OpenSim/Framework/sLLVector3.cs
@@ -33,6 +33,10 @@ namespace OpenSim.Framework
33 [Serializable] 33 [Serializable]
34 public class sLLVector3 34 public class sLLVector3
35 { 35 {
36 public float x = 0;
37 public float y = 0;
38 public float z = 0;
39
36 public sLLVector3() 40 public sLLVector3()
37 { 41 {
38 } 42 }
@@ -43,9 +47,5 @@ namespace OpenSim.Framework
43 y = v.Y; 47 y = v.Y;
44 z = v.Z; 48 z = v.Z;
45 } 49 }
46
47 public float x=0;
48 public float y=0;
49 public float z=0;
50 } 50 }
51} 51} \ No newline at end of file