OpenCNCPilot.GCode.HeightMap.AddPoint C# (CSharp) Method

AddPoint() public method

public AddPoint ( int x, int y, double height ) : void
x int
y int
height double
return void
		public void AddPoint(int x, int y, double height)
		{
			Points[x, y] = height;

			if (height > MaxHeight)
				MaxHeight = height;
			if (height < MinHeight)
				MinHeight = height;

			if (MapUpdated != null)
				MapUpdated();
		}