C# 클래스 LibNoise.Renderer.AbstractRenderer

Abstract base class for a renderer
파일 보기 프로젝트 열기: everbytes/LibNoise

보호된 프로퍼티들

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