aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/world/SurfacePatch.cs
blob: 71e4116d11170b00668171077a406206740ce638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Text;

namespace OpenSim.world
{
    public class SurfacePatch
    {
    	public float[] HeightMap;

	public SurfacePatch() {
		HeightMap = new float[16*16];
		
		int xinc;
            	int yinc;
		for(xinc=0; xinc<16; xinc++) for(yinc=0; yinc<16; yinc++) {
			HeightMap[xinc+(yinc*16)]=100.0f;
		}
					
	}
    }
}