set svn:eol-style
parent
5f516c9fb2
commit
5e08911400
|
@ -1,25 +1,25 @@
|
||||||
using System;
|
using System;
|
||||||
using libsecondlife;
|
using libsecondlife;
|
||||||
|
|
||||||
|
|
||||||
namespace OpenSim.Framework
|
namespace OpenSim.Framework
|
||||||
{
|
{
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public class sLLVector3
|
public class sLLVector3
|
||||||
{
|
{
|
||||||
public sLLVector3()
|
public sLLVector3()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
public sLLVector3(LLVector3 v)
|
public sLLVector3(LLVector3 v)
|
||||||
{
|
{
|
||||||
x = v.X;
|
x = v.X;
|
||||||
y = v.Y;
|
y = v.Y;
|
||||||
z = v.Z;
|
z = v.Z;
|
||||||
}
|
}
|
||||||
public float x;
|
public float x;
|
||||||
public float y;
|
public float y;
|
||||||
public float z;
|
public float z;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue