C# 클래스 LibNoise.ModuleBase

Base class for noise modules.
상속: IDisposable
파일 보기 프로젝트 열기: simonwittber/LibNoise-Unity 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
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[]