C# Класс LibNoise.Renderer.AbstractRenderer

Abstract base class for a renderer
Показать файл Открыть проект

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

Свойство Тип Описание
_callBack RendererCallback
_noiseMap IMap2D

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

Метод Описание
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.

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

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

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
Результат void

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

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

The callback function that Render() calls each time it fills a row of the image.
protected RendererCallback _callBack
Результат RendererCallback

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

The source noise map that contains the coherent-noise values.
protected IMap2D _noiseMap
Результат IMap2D