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

Provides a noise module that clamps the output value from a source module to a range of values. [OPERATOR]
Наследование: ModuleBase
Показать файл Открыть проект

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

Метод Описание
Clamp ( ) : System

Initializes a new instance of Clamp.

Clamp ( ModuleBase input ) : System

Initializes a new instance of Clamp.

Clamp ( double min, double max, ModuleBase input ) : System

Initializes a new instance of Clamp.

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

Returns the output value for the given input coordinates.

SetBounds ( double min, double max ) : void

Sets the bounds.

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

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

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

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

Initializes a new instance of Clamp.
public Clamp ( ModuleBase input ) : System
input ModuleBase The input module.
Результат System

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

Initializes a new instance of Clamp.
public Clamp ( double min, double max, ModuleBase input ) : System
min double The minimum value.
max double The maximum value.
input ModuleBase The input module.
Результат System

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

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

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