C# Класс LibNoise.Unity.Operator.Select

Provides a noise module that outputs the value selected from one of two source modules chosen by the output value from a control module. [OPERATOR]
Наследование: ModuleBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetValue ( double x, double y, double z ) : double

Returns the output value for the given input coordinates.

Select ( ) : System

Initializes a new instance of Select.

Select ( ModuleBase inputA, ModuleBase inputB, ModuleBase controller ) : System

Initializes a new instance of Select.

Select ( double min, double max, double fallOff, ModuleBase inputA, ModuleBase inputB ) : System

Initializes a new instance of Select.

SetBounds ( double min, double max ) : void

Sets the bounds.

Описание методов

GetValue() публичный Метод

Returns the output value for the given input coordinates.
public GetValue ( double x, double y, double z ) : double
x double The input coordinate on the x-axis.
y double The input coordinate on the y-axis.
z double The input coordinate on the z-axis.
Результат double

Select() публичный Метод

Initializes a new instance of Select.
public Select ( ) : System
Результат System

Select() публичный Метод

Initializes a new instance of Select.
public Select ( ModuleBase inputA, ModuleBase inputB, ModuleBase controller ) : System
inputA ModuleBase The first input module.
inputB ModuleBase The second input module.
controller ModuleBase
Результат System

Select() публичный Метод

Initializes a new instance of Select.
public Select ( double min, double max, double fallOff, ModuleBase inputA, ModuleBase inputB ) : System
min double The minimum value.
max double The maximum value.
fallOff double The falloff value at the edge transition.
inputA ModuleBase The first input module.
inputB ModuleBase The second input module.
Результат System

SetBounds() публичный Метод

Sets the bounds.
public SetBounds ( double min, double max ) : void
min double The minimum value.
max double The maximum value.
Результат void