diff options
author | UbitUmarov | 2019-11-12 18:19:12 +0000 |
---|---|---|
committer | UbitUmarov | 2019-11-12 18:19:12 +0000 |
commit | d10f11d31064f8d6fd6bccaf907897e07cd63cef (patch) | |
tree | 3636457b544b77f56dd175925cc6382429b5087d /OpenSim/Region/Framework/Interfaces/ITerrainChannel.cs | |
parent | more changes on terrain edit. Silent ignore comand if busy (large area smoot... (diff) | |
download | opensim-SC-d10f11d31064f8d6fd6bccaf907897e07cd63cef.zip opensim-SC-d10f11d31064f8d6fd6bccaf907897e07cd63cef.tar.gz opensim-SC-d10f11d31064f8d6fd6bccaf907897e07cd63cef.tar.bz2 opensim-SC-d10f11d31064f8d6fd6bccaf907897e07cd63cef.tar.xz |
terrain replace double by float
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/ITerrainChannel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ITerrainChannel.cs b/OpenSim/Region/Framework/Interfaces/ITerrainChannel.cs index 78db02a..9e1fa5b 100644 --- a/OpenSim/Region/Framework/Interfaces/ITerrainChannel.cs +++ b/OpenSim/Region/Framework/Interfaces/ITerrainChannel.cs | |||
@@ -36,7 +36,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
36 | int Height { get;} // Y dimension | 36 | int Height { get;} // Y dimension |
37 | int Altitude { get;} // Z dimension | 37 | int Altitude { get;} // Z dimension |
38 | 38 | ||
39 | double this[int x, int y] { get; set; } | 39 | float this[int x, int y] { get; set; } |
40 | 40 | ||
41 | float GetHeightAtXYZ(float x, float y, float z); | 41 | float GetHeightAtXYZ(float x, float y, float z); |
42 | 42 | ||