Description
The Mandelbrot Set is known to be one of the most beautiful fractals in mathematics. Though first discovered at the beginning of the 20th century, we can use computers to create detailed renderings…
Summary
- ) See how Math + Computer Science = Art The Mandelbrot Set is known to be one of the most beautiful fractals in mathematics.
- Where the Mandelbrot set gets really interesting is understanding the behavior near these points by visualizing at what rate the function diverges.
- Then, we can iterate through the Mandelbrot Set’s core function, waiting for when the distance from the origin is greater than 2.
- We can compute the number of successful iterations as a proportion of our threshold, and feed this value to a color generator.