mirror of
https://github.com/opensim/opensim.git
synced 2026-06-01 07:15:44 +08:00
26 lines
372 B
C#
26 lines
372 B
C#
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;
|
|
}
|
|
|
|
}
|