C# Class LibNoise.Generator.Const

Provides a noise module that outputs a constant value. [GENERATOR]
Inheritance: ModuleBase
Show file Open project: simonwittber/LibNoise-Unity Class Usage Examples

Public Methods

Method Description
Const ( ) : System

Initializes a new instance of Const.

Const ( float value ) : System

Initializes a new instance of Const.

GetValue ( float x, float y, float z ) : float

Returns the output value for the given input coordinates.

Method Details

Const() public method

Initializes a new instance of Const.
public Const ( ) : System
return System

Const() public method

Initializes a new instance of Const.
public Const ( float value ) : System
value float The constant value.
return System

GetValue() public method

Returns the output value for the given input coordinates.
public GetValue ( float x, float y, float z ) : float
x float The input coordinate on the x-axis.
y float The input coordinate on the y-axis.
z float The input coordinate on the z-axis.
return float