Buddhabrot Fractal

A ghostly density plot formed by tracing escaping orbits of the Mandelbrot set.

Concept

The Buddhabrot is produced by randomly sampling points c in the complex plane and iterating the Mandelbrot equation z_{n+1} = z_n^2 + c. Whenever an orbit escapes the set, every point along that path is plotted to a histogram. Millions of such paths reveal a Buddha-like silhouette.

Generation Steps

  1. Pick a random complex number c in the region.
  2. Iterate until escape radius > 2 or a maximum iteration count is reached.
  3. If the point escapes, plot every historic z value onto the image.
  4. Repeat, accumulating counts; render pixels proportional to log(count).

In the Gallery

← Back to gallery