Compute the Julia set.
from julia_set import juliaset
# Mandelbrot set
mandel = juliaset(c=0,init_with_constant=True,display=True)
# Other julia set
j = juliaset(c=0.1-0.21j,display=True)
You can find further examples in the notebook julia.ipynb
(upcoming)
- Implement Julia set
- Add option for Mandelbrot
- Add the possibility to have custom functions
- Optimize Computations
- Add possibility for quaternions and visualisation of it