Chunks
Moddable voxel sandbox for room-scale VR.
|
Provides a noise module that outputs value from a first source module to the power of the output value from a second source module. [OPERATOR] More...
Public Member Functions | |
Power () | |
Initializes a new instance of Power. More... | |
Power (ModuleBase lhs, ModuleBase rhs) | |
Initializes a new instance of Power. More... | |
override double | GetValue (double x, double y, double z) |
Returns the output value for the given input coordinates. More... | |
Public Member Functions inherited from LibNoise.ModuleBase | |
double | GetValue (Vector3 coordinate) |
Returns the output value for the given input coordinates. More... | |
double | GetValue (ref Vector3 coordinate) |
Returns the output value for the given input coordinates. More... | |
void | Dispose () |
Immediately releases the unmanaged resources used by this object. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from LibNoise.ModuleBase | |
ModuleBase (int count) | |
Initializes a new instance of Helpers. More... | |
virtual bool | Disposing () |
Immediately releases the unmanaged resources used by this object. More... | |
Protected Attributes inherited from LibNoise.ModuleBase | |
ModuleBase[] | m_modules = null |
Properties inherited from LibNoise.ModuleBase | |
virtual ModuleBase | this[int index] [get, set] |
Gets or sets a source module by index. More... | |
int | SourceModuleCount [get] |
Gets the number of source modules required by this noise module. More... | |
bool | IsDisposed [get] |
Gets a value whether the object is disposed. More... | |
Provides a noise module that outputs value from a first source module to the power of the output value from a second source module. [OPERATOR]
LibNoise.Operator.Power.Power | ( | ) |
Initializes a new instance of Power.
LibNoise.Operator.Power.Power | ( | ModuleBase | lhs, |
ModuleBase | rhs | ||
) |
Initializes a new instance of Power.
lhs | The left hand input module. |
rhs | The right hand input module. |
|
virtual |
Returns the output value for the given input coordinates.
x | The input coordinate on the x-axis. |
y | The input coordinate on the y-axis. |
z | The input coordinate on the z-axis. |
Implements LibNoise.ModuleBase.