C# 클래스 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)
상속: NoiseMap
파일 보기 프로젝트 열기: everbytes/LibNoise 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Heightmap32() 공개 메소드

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

Heightmap32() 공개 메소드

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

Heightmap32() 공개 메소드

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
리턴 LibNoise.Builder