C# Class LibNoise.Combiner.Power

Noise module that raises the output value from the left source module to the power of the output value from the right source module.
Inheritance: CombinerModule, IModule3D
Show file Open project: everbytes/LibNoise

Public Methods

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

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

Power ( ) : System
Power ( IModule left, IModule right ) : System

Method Details

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

Power() public method

public Power ( ) : System
return System

Power() public method

public Power ( IModule left, IModule right ) : System
left IModule
right IModule
return System