C# Class LibNoise.Renderer.AbstractRenderer

Abstract base class for a renderer
Afficher le fichier Open project: everbytes/LibNoise

Protected Properties

Свойство Type Description
_callBack RendererCallback
_noiseMap IMap2D

Méthodes publiques

Méthode Description
Render ( ) : void

Renders the destination image using the contents of the source noise map. @pre NoiseMap has been defined. @pre Image has been defined. @post The original contents of the destination image is destroyed. @throw ArgumentException See the preconditions.

Method Details

Render() public abstract méthode

Renders the destination image using the contents of the source noise map. @pre NoiseMap has been defined. @pre Image has been defined. @post The original contents of the destination image is destroyed. @throw ArgumentException See the preconditions.
public abstract Render ( ) : void
Résultat void

Property Details

_callBack protected_oe property

The callback function that Render() calls each time it fills a row of the image.
protected RendererCallback _callBack
Résultat RendererCallback

_noiseMap protected_oe property

The source noise map that contains the coherent-noise values.
protected IMap2D _noiseMap
Résultat IMap2D