top of page

Progress made on my fractal program: part one (more fractals!)

  • Writer: Landon Townsend
    Landon Townsend
  • Dec 6, 2021
  • 1 min read

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;

ree

Spun Julia:


ree

Peacock fractal: n = v ^ (n-1) + c;

ree

ree

Peacock Julia set:

ree

Cosine fractal: n = cos(n-1) + c;

ree

Cosine Julia:

ree

Reciprocal Mandelbrot: n = (n-1)^-2 + c;

ree

Reciprocal Julia set (at a point where the above diverges)

ree

"Super Mandelbrot": n = (n-1)^v+c, where v is a complex number. This is a multivalued function so I am computing it as if the "argument" of a complex number is Atan2(imaginary, real).

ree

Super Julia set:

ree

 
 
 
Featured Posts
Recent Posts
Archive
Search By Tags
Follow Us
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
bottom of page