C# Class LibNoise.Operator.Invert

Provides a noise module that inverts the output value from a source module. [OPERATOR]
Inheritance: ModuleBase
Exibir arquivo Open project: simonwittber/LibNoise-Unity Class Usage Examples

Public Methods

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

Returns the output value for the given input coordinates.

Invert ( ) : System

Initializes a new instance of Invert.

Invert ( ModuleBase input ) : System

Initializes a new instance of Invert.

Method Details

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

Invert() public method

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

Invert() public method

Initializes a new instance of Invert.
public Invert ( ModuleBase input ) : System
input ModuleBase The input module.
return System