diff --git a/OpenSim/Framework/sLLVector3.cs b/OpenSim/Framework/sLLVector3.cs index 25a90153c9..a29df2725e 100644 --- a/OpenSim/Framework/sLLVector3.cs +++ b/OpenSim/Framework/sLLVector3.cs @@ -1,25 +1,25 @@ -using System; -using libsecondlife; - - -namespace OpenSim.Framework -{ - [Serializable] - public class sLLVector3 - { - public sLLVector3() - { - - } - public sLLVector3(LLVector3 v) - { - x = v.X; - y = v.Y; - z = v.Z; - } - public float x; - public float y; - public float z; - } - -} +using System; +using libsecondlife; + + +namespace OpenSim.Framework +{ + [Serializable] + public class sLLVector3 + { + public sLLVector3() + { + + } + public sLLVector3(LLVector3 v) + { + x = v.X; + y = v.Y; + z = v.Z; + } + public float x; + public float y; + public float z; + } + +}