| Package | de.popforge.imageprocessing.filters.render |
| Class | public final class Mandelbrot |
| Implements | IFilter |
Supported formats:
var filter: Mandelbrot = new Mandelbrot( 10, 16, 20 ); var image: Image = new Image( 160, 120, ImageFormat.RGB ); filter.apply( image );
| Method | Defined by | ||
|---|---|---|---|
|
Mandelbrot(r:Number = 1, g:Number = 1, b:Number = 1)
Creates a new Mandelbrot object.
| Mandelbrot | ||
|
Applies the filter to the given Image object.
| Mandelbrot | ||
|
toString():String
Builds and returns a string containing the name of the class.
| Mandelbrot | ||
| Mandelbrot | () | constructor |
public function Mandelbrot(r:Number = 1, g:Number = 1, b:Number = 1)Creates a new Mandelbrot object.
Parametersr:Number (default = 1) — Multiplier for red color channel.
|
|
g:Number (default = 1) — Multiplier for green color channel.
|
|
b:Number (default = 1) — Multiplier for blue color channel.
|
| apply | () | method |
public function apply(image:Image):voidApplies the filter to the given Image object.
Parametersimage:Image — The image that will be manipulated.
|
| toString | () | method |
public function toString():StringBuilds and returns a string containing the name of the class.
ReturnsString — A string containing the name of the class.
|