C# Class LibNoise.Renderer.Heightmap32

Implements a 32 bits Heightmap, a 2-dimensional array of float values (+-1.5 x 10^−45 to +-3.4 x 10^38)
Inheritance: NoiseMap
Mostra file Open project: everbytes/LibNoise Class Usage Examples

Public Methods

Method Description
Heightmap32 ( ) : LibNoise.Builder

0-args constructor

Heightmap32 ( Heightmap32 copy ) : LibNoise.Builder

Copy constructor

Heightmap32 ( int width, int height ) : LibNoise.Builder

Create a new Heightmap32 with the given values The width and height values must be positive.

Method Details

Heightmap32() public method

0-args constructor
public Heightmap32 ( ) : LibNoise.Builder
return LibNoise.Builder

Heightmap32() public method

Copy constructor
public Heightmap32 ( Heightmap32 copy ) : LibNoise.Builder
copy Heightmap32 The heightmap to copy
return LibNoise.Builder

Heightmap32() public method

Create a new Heightmap32 with the given values The width and height values must be positive.
public Heightmap32 ( int width, int height ) : LibNoise.Builder
width int The width of the new noise map.
height int The height of the new noise map
return LibNoise.Builder