C# Class LibNoise.Builder.ShapeFilter.LevelCache

A simple 2d-coordinates struct used as a cached value
显示文件 Open project: everbytes/LibNoise

Public Properties

Property Type Description
Level byte

Public Methods

Method Description
IsCached ( int x, int y ) : bool

IsCached.

LevelCache ( int x, int y, byte level ) : LibNoise.Renderer

Default constructor.

Update ( int x, int y, byte level ) : void

Update.

Method Details

IsCached() public method

IsCached.
public IsCached ( int x, int y ) : bool
x int X.
y int Y.
return bool

LevelCache() public method

Default constructor.
public LevelCache ( int x, int y, byte level ) : LibNoise.Renderer
x int X.
y int Y.
level byte Level.
return LibNoise.Renderer

Update() public method

Update.
public Update ( int x, int y, byte level ) : void
x int X.
y int Y.
level byte Level.
return void

Property Details

Level public_oe property

Level.
public byte Level
return byte