diff options
Diffstat (limited to 'OpenSim/Region/Terrain.BasicTerrain/libTerrainBSD/Channel/Grid.cs')
-rw-r--r-- | OpenSim/Region/Terrain.BasicTerrain/libTerrainBSD/Channel/Grid.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Terrain.BasicTerrain/libTerrainBSD/Channel/Grid.cs b/OpenSim/Region/Terrain.BasicTerrain/libTerrainBSD/Channel/Grid.cs index 0930a36..0155791 100644 --- a/OpenSim/Region/Terrain.BasicTerrain/libTerrainBSD/Channel/Grid.cs +++ b/OpenSim/Region/Terrain.BasicTerrain/libTerrainBSD/Channel/Grid.cs | |||
@@ -341,7 +341,7 @@ namespace libTerrain | |||
341 | { | 341 | { |
342 | for (y = 0; y < h; y++) | 342 | for (y = 0; y < h; y++) |
343 | { | 343 | { |
344 | Set(x, y, Tools.linearInterpolate(map[x, y], other.map[x, y], amount)); | 344 | Set(x, y, Tools.LinearInterpolate(map[x, y], other.map[x, y], amount)); |
345 | } | 345 | } |
346 | } | 346 | } |
347 | return this; | 347 | return this; |
@@ -354,7 +354,7 @@ namespace libTerrain | |||
354 | { | 354 | { |
355 | for (y = 0; y < h; y++) | 355 | for (y = 0; y < h; y++) |
356 | { | 356 | { |
357 | Set(x, y, Tools.linearInterpolate(map[x, y], other.map[x, y], amount.map[x, y])); | 357 | Set(x, y, Tools.LinearInterpolate(map[x, y], other.map[x, y], amount.map[x, y])); |
358 | } | 358 | } |
359 | } | 359 | } |
360 | return this; | 360 | return this; |