| Package | de.popforge.imageprocessing.filters.render |
| Class | public class MakeTileable |
| Implements | IFilter |
This filter is based on a technique from toxie^ainc. and the C++ implementation from Hopper.
Supported formats:
var mandelbrot: Mandelbrot = new Mandelbrot( 20, 16, 28 ); var filter: MakeTileable = new MakeTileable(); var image: Image = new Image( 160, 120, ImageFormat.RGB ); mandelbrot.apply( image ); filter.apply( image );
See also
| Method | Defined by | ||
|---|---|---|---|
|
MakeTileable(strength:int = 64)
Creates a new MakeTileable object.
| MakeTileable | ||
|
Applies the filter to the given Image object.
| MakeTileable | ||
|
toString():String
Builds and returns a string containing the name of the class.
| MakeTileable | ||
| MakeTileable | () | constructor |
public function MakeTileable(strength:int = 64)Creates a new MakeTileable object.
Parametersstrength:int (default = 64) — The strength of the filter in relation to the image size.
|
| 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.
|