2012-03-24 03:19:58 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Axios.Engine.Structures
|
|
|
|
|
{
|
2012-03-24 04:54:58 +00:00
|
|
|
|
public class AxiosPoint
|
2012-03-24 03:19:58 +00:00
|
|
|
|
{
|
2012-03-24 04:21:26 +00:00
|
|
|
|
private float _x;
|
|
|
|
|
private float _y;
|
|
|
|
|
|
|
|
|
|
public float X
|
|
|
|
|
{
|
|
|
|
|
get { return _x; }
|
|
|
|
|
set { _x = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public float Y
|
|
|
|
|
{
|
|
|
|
|
get { return _y; }
|
|
|
|
|
set { _y = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public AxiosPoint(float X, float Y)
|
|
|
|
|
{
|
|
|
|
|
_x = X;
|
|
|
|
|
_y = Y;
|
|
|
|
|
}
|
2012-03-24 03:19:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|