diff options
author | Adam Frisby | 2008-03-03 08:35:59 +0000 |
---|---|---|
committer | Adam Frisby | 2008-03-03 08:35:59 +0000 |
commit | c5d1f87cd202663f2f26ca90a973d9763070dda3 (patch) | |
tree | b1941867d13d1d3b29b46483e6b58cba536c72ca /OpenSim/Region/Environment/Interfaces | |
parent | * Applying Ahzz's profile patch. Thanks Ahzz! (diff) | |
download | opensim-SC_OLD-c5d1f87cd202663f2f26ca90a973d9763070dda3.zip opensim-SC_OLD-c5d1f87cd202663f2f26ca90a973d9763070dda3.tar.gz opensim-SC_OLD-c5d1f87cd202663f2f26ca90a973d9763070dda3.tar.bz2 opensim-SC_OLD-c5d1f87cd202663f2f26ca90a973d9763070dda3.tar.xz |
* Removed and sorted using clauses in a number of files.
* Cleaned up ITerrainChannel
* Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Paint Brushes
* Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Fill Brushes
* Implemented Export functionality for RAW32 terrain loader
* Implemented Import/Export for SLRAW terrain loader
* Implemented Export for JPEG terrain loader
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs b/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs index cc02268..f0d600a 100644 --- a/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs +++ b/OpenSim/Region/Environment/Interfaces/ITerrainChannel.cs | |||
@@ -26,7 +26,6 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | using System; | ||
30 | namespace OpenSim.Region.Environment.Interfaces | 29 | namespace OpenSim.Region.Environment.Interfaces |
31 | { | 30 | { |
32 | public interface ITerrainChannel | 31 | public interface ITerrainChannel |
@@ -34,5 +33,6 @@ namespace OpenSim.Region.Environment.Interfaces | |||
34 | int Height { get; } | 33 | int Height { get; } |
35 | double this[int x, int y] { get; set; } | 34 | double this[int x, int y] { get; set; } |
36 | int Width { get; } | 35 | int Width { get; } |
36 | float[] GetFloatsSerialised(); | ||
37 | } | 37 | } |
38 | } | 38 | } |