Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 806 Bytes

readme.md

File metadata and controls

36 lines (24 loc) · 806 Bytes

Julia Set

Compute the Julia set.

Usage

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

Details

(upcoming)

TODO

  • Implement Julia set
  • Add option for Mandelbrot
  • Add the possibility to have custom functions
  • Optimize Computations
  • Add possibility for quaternions and visualisation of it

Some external links