Revise.Files.HIM.HeightmapFile.this C# (CSharp) Method

this() public method

Gets the height value of the specified coordinates.
public this ( int x, int y ) : float
x int
y int
return float
        public float this[int x, int y]
        {
            get {
                return heights[x, y];
            }
        }