www.atke-bentsen.dk

Mandelbrot on Canvas

Based on this mandelbrot explanation, I tried to implement it myself. With zoom.

I had problems getting the imaginary numbers calculations working in code, so got some help for that, from this C++ example

When zoomed out, the line shown under the mouse, shows the calculation for that pixel. Color depends on how many lines are drawn before escaping the chart. If it never escapes within the limit, pixel is black. Top left shows the color-range used.

Canvas is 800x600 pixel. Everytime you zoom, 480.000 pixels are calculated for mandelbrot to the limit shown in bottom right as MaxDepth. There is no caching or reuse of calculations.