© 2002 Kerry Mitchell. Used with permission.
Fundamentally, fractals are shapes, just as circles, squares, and triangles are shapes. However, fractals are very different from other, more common shapes. Right away you can tell that fractals are different. A circle, for example, is smooth. We can see that more precisely by looking at smaller and smaller pieces of a circle:
As the magnification increases, the edge of the circle flattens out and eventually becomes indistinguishable from a straight line. This is characteristic of any smooth shape — if you zoom in enough, the edge will look like a straight line.
Fractals are different in that no matter how much you zoom in, the shape never flattens out. Here we see this with a fractal called the Mandelbrot set:
With fractals, no matter how much you zoom in, you never run out of detail. There is literally an infinite amount of detail in every fractal. The detail is usually made up of small copies of the overall shape. For example, if we zoom in to the right spots on the Mandelbrot set, we see small copies of the set buried inside:
The differences between smooth shapes and fractals arise from how the shapes are generated mathematically. Smooth shapes can often be described by relatively simple equations, such as x2 + y2 = r2 for a circle, or Ax + By = C for the side of a triangle. Fractals are generated in an iterative process, where the result from one step is used as the input for the next.
In the generation of escape-time fractals, each pixel in the image represents a complex number (a number with two parts), like a pair of map coordinates. Every fractal has its own characteristic formula, and the number z0 is used with this formula to generate a sequence of numbers:
iteration | input | output |
1 | z0 | z1 |
2 | z1 | z2 |
3 | z2 | z3 |
... | ||
n | zn-1 | zn |
At each iteration, the previous result is fed back into the formula as the new input.
Depending on the formula and the numbers chosen, different things will happen to the sequence. With the Mandelbrot set, some numbers (pixels) will lead to a sequence that gets bigger and bigger, never turning back. These pixels are termed "Outside" points and are shown in white and gray above. Other numbers begin sequences that settle down into repeating patterns, or meander about without ever getting too big. These pixels are termed "Inside" points and are shown in black above. The boundary between the "Inside" and "Outside" points is the actual fractal, and is where most of the interesting detail lies.
Mathematically, the outside points are those pixels such that the numbers in their sequence becomes infinitely large, and the inside points are everything else. To keep the formula from iterating endlessly, a "bailout" condition is set. Once the sequence crosses that threshold, it will never come back and we know that point is an outside point. If the sequence never grows larger than the bailout value, in a specified number of iterations, we can consider the point an inside point. In general, the more iterations calculated, the more detailed the image.
The calculation formula determines the basic shape of the fractal, but its final appearance is also affected by the coloring formulas and the gradient. The coloring formulas communicate with the calculation formulas to transform the sequence of numbers into a value that is then used by the gradient to assign the numbers to areas of the palette, much like a "paint by number" set.
Category: About
All content on this website is the property of Janet Parke and is protected under U.S. and International copyright laws. The images may not be reproduced, stored, or manipulated in any way without written permission of the artist.
If you wish to use any of the artwork or text on this site for commercial or non-commercial uses, please contact me.