Add some comments on ILandObject.StartPoint and EndPoint
parent
a0469daf75
commit
8eb2789ae1
|
@ -43,7 +43,17 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||||
LandData LandData { get; set; }
|
LandData LandData { get; set; }
|
||||||
bool[,] LandBitmap { get; set; }
|
bool[,] LandBitmap { get; set; }
|
||||||
UUID RegionUUID { get; }
|
UUID RegionUUID { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The start point for the land object. This is the western-most point as one scans land working from
|
||||||
|
/// north to south.
|
||||||
|
/// </summary>
|
||||||
Vector3 StartPoint { get; }
|
Vector3 StartPoint { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The end point for the land object. This is the eastern-most point as one scans land working from
|
||||||
|
/// south to north.
|
||||||
|
/// </summary>
|
||||||
Vector3 EndPoint { get; }
|
Vector3 EndPoint { get; }
|
||||||
|
|
||||||
bool ContainsPoint(int x, int y);
|
bool ContainsPoint(int x, int y);
|
||||||
|
|
Loading…
Reference in New Issue