Mandelbrot Animation 4

Zooming in on the point (0.42661603, 0.217772923)

The mandelbrot code comes with examples like this one. The python script creates a sequence of bitmaps which are converted to GIFs and combined into an animation as described elsewhere on the site. This animation contains 65 frames and is about 3.5MB. The generating script looks something like;

import Mandelbrot
Mandelbrot.example_size = (320,240)
Mandelbrot.active_point = 4
for i in range (3,68):
    Mandelbrot.example(i)

If you can't leave your PC running you can split the loop into sections.