Skip to content
Documentation / Fractal Zoomer / In Coloring Mode Menu
In Coloring Mode Menu
From Fractal Zoomer
In Coloring Mode Menu
Maximum Iterations , is the default way of coloring areas. This means that
the color assigned to the maximum number of iterations (usually black) will be used.
norm(z) , takes into account the norm of z in the last iteration to colorize the area.
Decomposition Like , uses (atan2(Im(z), Re(z)) / 2pi + 0.75) * 59pi.
Re / Im , uses Re(z) / Im(z) in the last iteration to colorize the area.
cos(norm(z)) , uses cos(Re(z) * Im(z) * |Re(z)| * |Im(z)|) if (norm(z) * 10) % 2 is 1, else sin(Re(z) * Im(z) * |Re(z)| * |Im(z)|).
norm(z) * cos(Re^2) , uses norm(z) * cos(Re(z)^2) in the last iteration to colorize the area.
sin(Re^2 - Im^2) , uses sin(Re(z)^2 - Im(z)^2) in the last iteration to colorize the area.
atan(Re * Im * |Re| * |Im|) , uses atan(Re(z) * Im(z) * |Re(z)| * |Im(z)|) in the last iteration to colorize the area.
Squares , uses (atan2(Im(z), Re(z)) / 2pi + 0.75) * 59pi if (|Re(z) * 40| % 2 ) XOR (|Im(z) * 40| % 2) is 1, else (atan2(Re(z), Im(z)) / 2pi + 0.75) * 59pi.
Squares 2 , is variation of the Squares algorithm, using different coloring method.
User In Coloring Method , lets you define your own coloring algorithm.
While using any but the default in-coloring algorithm, Periodicity Checking option will be disabled.