C# Класс LibNoise.ModuleBase

Base class for noise modules.
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
m_modules LibNoise.ModuleBase[]

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

Метод Описание
Dispose ( ) : void

Immediately releases the unmanaged resources used by this object.

GetValue ( Vector3 coordinate ) : float

Returns the output value for the given input coordinates.

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

Returns the output value for the given input coordinates.

this ( int index ) : ModuleBase

Gets or sets a source module by index.

Защищенные методы

Метод Описание
Disposing ( ) : bool

Immediately releases the unmanaged resources used by this object.

ModuleBase ( int count ) : System

Initializes a new instance of Helpers.

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

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

Immediately releases the unmanaged resources used by this object.
public Dispose ( ) : void
Результат void

Disposing() защищенный Метод

Immediately releases the unmanaged resources used by this object.
protected Disposing ( ) : bool
Результат bool

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

Returns the output value for the given input coordinates.
public GetValue ( Vector3 coordinate ) : float
coordinate Vector3 The input coordinate.
Результат float

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

Returns the output value for the given input coordinates.
public abstract 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.
Результат float

ModuleBase() защищенный Метод

Initializes a new instance of Helpers.
protected ModuleBase ( int count ) : System
count int The number of source modules.
Результат System

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

Gets or sets a source module by index.
public this ( int index ) : ModuleBase
index int The index of the source module to aquire.
Результат ModuleBase

Описание свойств

m_modules защищенное свойство

protected ModuleBase[],LibNoise m_modules
Результат LibNoise.ModuleBase[]