1Mandelbrot(3) User Contributed Perl Documentation Mandelbrot(3)
2
3
4
6 Imager::Filter::Mandelbrot - filter that renders the Mandelbrot set.
7
9 use Imager;
10 use Imager::Filter::Mandelbrot;
11
12 $img->filter(type=>'mandelbrot', ...);
13
15 This is a expansion of the "mandelbrot" dynamically loadable filter
16 provided in "dynfilt" in previous releases of Imager.
17
18 Valid filter parameters are:
19
20 • "minx", "maxx" - the range of x values to render. Defaults: -2.5,
21 1.5.
22
23 • "miny", "maxy" - the range of y values to render. Defaults: -1.5,
24 1.5
25
26 • "maxiter" - the maximum number of iterations to perform when
27 checking if the sequence tend towards infinity.
28
30 Original by Arnar M. Hrafnkelsson.
31
32 Adapted and expanded by Tony Cook <tonyc@cpan.org>
33
35 Imager, Imager::Filters.
36
37
38
39perl v5.36.0 2023-01-20 Mandelbrot(3)