
Progress made on my fractal program part two: create your own fractals!
This took around a week to do but it was well worth it. Clicking the "custom function" checkbox will take you to this UI: The proper way to do this would have been with a graph system but that was outside the scope of this project (and would have taken much longer than a week), so I am using a less user friendly "list of commands" system. I did my best to polish it up as much as I could though. For the starting function, if you want a mandelbrot-like set, start with a constan

Progress made on my fractal program: part one (more fractals!)
I wanted to make two blog posts, one dedicated to some of the new built in fractals I added into my fractal program, and one for the more exciting, ambitious features. I've added tooltips to all the fractals so you can see the formulas and how to use them. As far as I know there are no "official" names for these fractals so I've named them after their behavior or the equations constructing them. Spun Mandelbrot: n = (n - 1) ^ 2 + c; n += n / |n| * v; Spun Julia: Peacock fract