Add some comments on ILandObject.StartPoint and EndPoint

viewer-2-initial-appearance
Justin Clark-Casey (justincc) 2011-01-26 21:19:22 +00:00
parent a0469daf75
commit 8eb2789ae1
1 changed files with 10 additions and 0 deletions

View File

@ -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);