Mandelbrot
Now 12 parallel running threads speedup the image creation.
The Mandelbrot set is the set obtained from the quadratic recurrence equation
z(n+1)=z(n)^2 + C
with z(0)=C, where points C in the complex plane for which the orbit of z(n) does not tend to infinity are in the set.
run it
- download jar file
- start terminal (cmd on windows, bash on linux)
- execute java -jar Mandelbrot.jar
Some Options
- key j/a for Julia, Mandelbrot
- key u/d up/down details
- mouse zoom in/out/drag img/color change
- key s/e save / exit
Source
java code
java code