C# Class LibNoise.Filter.SinFractal

Noise module that outputs 3-dimensional Sin Fractal noise. This noise module is nearly identical to SumFractal except this noise module modifies each octave with an absolute-value function and apply a Sine function of output value + x coordinate
Inheritance: FilterModule, IModule3D, IModule2D
Show file Open project: everbytes/LibNoise Class Usage Examples

Public Methods

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

Generates an output value given the coordinates of the specified input value.

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

Generates an output value given the coordinates of the specified input value.

Method Details

GetValue() public method

Generates an output value given the coordinates of the specified input value.
public GetValue ( float x, float y ) : float
x float The input coordinate on the x-axis.
y float The input coordinate on the y-axis.
return float

GetValue() public method

Generates an output value given the coordinates of the specified input value.
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