Julia Set - 07/09/19

Back to Main Page

While perusing the wikipedia page about the mandelbrot set, looking for things to add to my visualiser, I came across several references to the Julia set. I thought that it looked interesting, so I looked into it.

My first port of call, Numberphile, came good again, with another informative video:

This gave me all the information I needed to program the Julia set. Since I had already made the mandelbrot set, the Julia set was pretty simple to code, by adjusting the calculation performed slightly.

Nonetheless, this still gave some nice visualisations, such as these:

Julia set Julia set

You can get the code here, and you will need PIL, Numba and Numpy to run it.

Back to Main Page