Introduction
I have written many fractal applications in my life. Starting on the C64, on the Amiga, on the PC, using different languages (even on a TI calculator in BASIC). Rendering fractals is a good practice when learning programming. Last week, I spent some time writing a simple fractal engine in C#. The purpose was to pack many of the programming techniques I was using during the last years into one application. In this application, you will find many interesting topics covered like:
- General C# programming
- MDI applications done in .NET
- Usage of interface classes in C#
- Use of delegate functions
- Asynchronous calculations
- Making use of multiple CPU cores
- Making multi-threaded mathematic calculations
- Bilinear filtering of bitmaps
- Complex number class done in C#
- Mathematic background of Mandelbrot, Julia, and Newton fractals
- and many more ...
Background
I have been fascinated by fractals ever since I was a kid. I can remember the first Mandelbrot engines on the commodore 64. Again and again, I am fascinated by the beauty of the outcome of such simple algorithms:
A Newton fractal

The Mandelbrot fractal from a bird's eye view

The Julia fractal

A Mandelbrot fractal without and with 'exact' rendering
Exact rendering means that the number of iteration steps is not interpreted as int
but as double
, and the color used to represent the result is interpolated between the previous and the next color in the palette. Using exact rendering does not need much more CPU power, but greatly improves the quality of the outcome.
Somewhere inside the Mandelbrot fractal

The code
I don't want to put any code snippets here. Just open the solution and have a look into it. I think the code is very simple and clear, everything should be self-explanatory. I think it will be a good tutorial for beginners going through the code. You will find many things here that took me a long time to learn ;-)
There is one interface class IFractal
from which a base fractal class will be derived. From this base fractal class, the Mandelbrot, Julia, and Newton fractals are derived.
You have an MDI container and a general MDI child form that can handle displaying dragging and zooming of fractals. You can drag a rectangle with the left mouse button pressed to zoom into a fractal. You can move the mouse with the right button pressed to scroll the fractal around. You can move the mouse with the middle parameter pressed, to change the control point used for the Julia fractal.
Fractals can be stored to and loaded from XML files. Fractal renderings can be stored as PNG files.
The engine renders at decent speed. It detects the number of available CPU cores and creates one rendering thread for each. The time needed to render a fractal nearly halves when going from a single core to a dual core machine. On my dual core Notebook, rendering a bird's eye Mandelbrot fractal with 2000x2000 pixels and 256 iterations per pixel takes approximately 650 ms, which is an acceptable speed.
This program is far from being finished, and probably will never be, due to lack of time. But, it is already capable of doing very beautiful fractal renderings. And, it shows how simple things can be done in C#. I remember doing the same in C++ some years ago, and it was a lot more work.
Next steps ...
There are some things that I want to implement in the near future, for the next release (I hope I will find the time):
- A screensaver generating random fractals.
- A fractal movie renderer.
- Handle dynamic palette sizes up to an unlimited amount of colors. Right now, the palette is fixed to 256 colors, though the palette form can display an arbitrary amount of colors.
If you have any good suggestions, just post them here.
History
- 27.07.2009: Initial version.
I have started programming at the age of 13 on the commodore 64.
Ever since then I have been programming on many systems in many languages.
During the last 12 years I have been working as professional programmer in different companies and different areas.
Now I am working as freelancer programmer / consultant