aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs b/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs
index 952ca0a..aa34c45 100644
--- a/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs
+++ b/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs
@@ -32,7 +32,13 @@ namespace OpenSim.Region.Environment.Interfaces
32 int Height { get; } 32 int Height { get; }
33 double this[int x, int y] { get; set; } 33 double this[int x, int y] { get; set; }
34 int Width { get; } 34 int Width { get; }
35
36 /// <summary>
37 /// Squash the entire heightmap into a single dimensioned array
38 /// </summary>
39 /// <returns></returns>
35 float[] GetFloatsSerialised(); 40 float[] GetFloatsSerialised();
41
36 double[,] GetDoubles(); 42 double[,] GetDoubles();
37 bool Tainted(int x, int y); 43 bool Tainted(int x, int y);
38 ITerrainChannel MakeCopy(); 44 ITerrainChannel MakeCopy();