aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/ILandObject.cs
diff options
context:
space:
mode:
authorMic Bowman2011-01-26 13:35:21 -0800
committerMic Bowman2011-01-26 13:35:21 -0800
commit2bab8e5538d004447126ce8990d8b2e2b09aacf1 (patch)
treee5885ef5df7c69829816c30f5ee72c63fd1829cb /OpenSim/Region/Framework/Interfaces/ILandObject.cs
parentRemove the RestorePresences functions (which don't seem to be doing (diff)
parentAdd some comments on ILandObject.StartPoint and EndPoint (diff)
downloadopensim-SC_OLD-2bab8e5538d004447126ce8990d8b2e2b09aacf1.zip
opensim-SC_OLD-2bab8e5538d004447126ce8990d8b2e2b09aacf1.tar.gz
opensim-SC_OLD-2bab8e5538d004447126ce8990d8b2e2b09aacf1.tar.bz2
opensim-SC_OLD-2bab8e5538d004447126ce8990d8b2e2b09aacf1.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/ILandObject.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/ILandObject.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ILandObject.cs b/OpenSim/Region/Framework/Interfaces/ILandObject.cs
index 585eb00..576b645 100644
--- a/OpenSim/Region/Framework/Interfaces/ILandObject.cs
+++ b/OpenSim/Region/Framework/Interfaces/ILandObject.cs
@@ -43,7 +43,21 @@ namespace OpenSim.Region.Framework.Interfaces
43 LandData LandData { get; set; } 43 LandData LandData { get; set; }
44 bool[,] LandBitmap { get; set; } 44 bool[,] LandBitmap { get; set; }
45 UUID RegionUUID { get; } 45 UUID RegionUUID { get; }
46
47 /// <summary>
48 /// The start point for the land object. This is the western-most point as one scans land working from
49 /// north to south.
50 /// </summary>
51 Vector3 StartPoint { get; }
52
53 /// <summary>
54 /// The end point for the land object. This is the eastern-most point as one scans land working from
55 /// south to north.
56 /// </summary>
57 Vector3 EndPoint { get; }
58
46 bool ContainsPoint(int x, int y); 59 bool ContainsPoint(int x, int y);
60
47 ILandObject Copy(); 61 ILandObject Copy();
48 62
49 void SendLandUpdateToAvatarsOverMe(); 63 void SendLandUpdateToAvatarsOverMe();