C# 클래스 LibNoise.Unity.ModuleBase

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

보호된 프로퍼티들

프로퍼티 타입 설명
m_modules LibNoise.Unity.ModuleBase[]

공개 메소드들

메소드 설명
Dispose ( ) : void

Immediately releases the unmanaged resources used by this object.

GetValue ( Vector3 coordinate ) : double

Returns the output value for the given input coordinates.

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

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 ) : double
coordinate Vector3 The input coordinate.
리턴 double

GetValue() 공개 추상적인 메소드

Returns the output value for the given input coordinates.
public abstract 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

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.Unity m_modules
리턴 LibNoise.Unity.ModuleBase[]