Update svn properties.

This commit is contained in:
Jeff Ames
2009-03-07 02:00:18 +00:00
parent ebe84907ae
commit e1f68145be
13 changed files with 855 additions and 855 deletions

View File

@@ -1,34 +1,34 @@
using OpenSim.Region.Framework.Scenes;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
public class Heightmap : IHeightmap
{
private Scene m_scene;
public Heightmap(Scene scene)
{
m_scene = scene;
}
public int Height
{
get { return m_scene.Heightmap.Height; }
}
public int Width
{
get { return m_scene.Heightmap.Width; }
}
public double Get(int x, int y)
{
return m_scene.Heightmap[x, y];
}
public void Set(int x, int y, double val)
{
m_scene.Heightmap[x, y] = val;
}
}
}
using OpenSim.Region.Framework.Scenes;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
public class Heightmap : IHeightmap
{
private Scene m_scene;
public Heightmap(Scene scene)
{
m_scene = scene;
}
public int Height
{
get { return m_scene.Heightmap.Height; }
}
public int Width
{
get { return m_scene.Heightmap.Width; }
}
public double Get(int x, int y)
{
return m_scene.Heightmap[x, y];
}
public void Set(int x, int y, double val)
{
m_scene.Heightmap[x, y] = val;
}
}
}