C# Class LibNoise.Operator.Translate

Provides a noise module that moves the coordinates of the input value before returning the output value from a source module. [OPERATOR]
Inheritance: ModuleBase
Afficher le fichier Open project: simonwittber/LibNoise-Unity Class Usage Examples

Méthodes publiques

Méthode Description
GetValue ( float x, float y, float z ) : float

Returns the output value for the given input coordinates.

Translate ( ) : System

Initializes a new instance of Translate.

Translate ( float x, float y, float z, ModuleBase input ) : System

Initializes a new instance of Translate.

Method Details

GetValue() public méthode

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

Translate() public méthode

Initializes a new instance of Translate.
public Translate ( ) : System
Résultat System

Translate() public méthode

Initializes a new instance of Translate.
public Translate ( float x, float y, float z, ModuleBase input ) : System
x float The translation on the x-axis.
y float The translation on the y-axis.
z float The translation on the z-axis.
input ModuleBase The input module.
Résultat System