TURBO MODE Keyboard controls: <hold both keys at once> Show zoom tool- z s Hide zoom tool- z h Activate zoom tool- z space Show variables- v s Hide variables- v h To export a fractal: Show variables, then record every value. All other instructions are in the project or so obvious it would be silly to explain them. (with a few exceptions, just experiment with it) Fractals: -Mandelbrot z=z^2 +c -Mandelbar z=z^2 +c (i=i-1) -Burning Ship z=|z^2+c| -Julia Set (z=c,c=(whichever value you enter)) z=z^2 +c -Multibrot (x=(whichever value you enter)) z=z^x +c -Multi julia (x=(whichever value you enter),z=c,c=(whichever value you enter) z=z^x+c -Buffalo z=|z^2|+c
This project generates images of escape-time fractals. Escape time fractals are generated by running every point on the complex plane through an equation. If the point stays below a certain value, (remains bounded) , it is shown as a black dot. These points are in the set. The other points' colors are from the number of iterations taken for the point to become unbounded (not in the set.) Every point on the screen is a point on the complex plane, with x-value becoming the real coordinate and y-value becoming the imaginary coordinate. -The first fractal viewer I've made with a correctly working zoom tool! -Guaranteed to be greater than 400% slower than other fractal explorers at default settings! To speed up the project, decreasing the iterations or increasing the size will work (although the pixel size feature is not recommended over 5) Changelog: V1: (10_11_2014) -Color, iteration, size, zoom, and import tools -Mandelbrot Set -Mandelbar Set -Burning Ship Set (renders upside-down) -Julia Set V2: (10_17_2014) -Multibrot Set -Multi julia (higher power julia set) V3: (6_18_2015) -Fixed Burning Ship (no longer renders upside-down) -Buffalo Fractal