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
Afficher le fichier Open project: everbytes/LibNoise Class Usage Examples

Méthodes publiques

Méthode 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 méthode

0-args constructor
public Heightmap32 ( ) : LibNoise.Builder
Résultat LibNoise.Builder

Heightmap32() public méthode

Copy constructor
public Heightmap32 ( Heightmap32 copy ) : LibNoise.Builder
copy Heightmap32 The heightmap to copy
Résultat LibNoise.Builder

Heightmap32() public méthode

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
Résultat LibNoise.Builder