Julia Sets also offer great fractals. The definition of the Julia sets is very similar to the mandelbrot set. As a reminder, the Mandelbrot set is the set of the complex numbers c for which the sequence zn+1=z2n+c is bounded (z0 is set to 0). While, the definition of the Julia sets is the numbers z0 for which the sequence is bounded, with c a constant value.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from math import log, log2
MAX_ITER = 80
def julia(c, z0):
z = z0
n = 0
whileabs(z) <= 2and n < MAX_ITER:
z = z*z + c
n += 1
if n == MAX_ITER:
return MAX_ITER
return n + 1 - log(log2(abs(z)))
1
from PIL import Image, ImageDraw
I hope you liked this playground. Please leave a comment below!
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.