About
This application uses WebAssembly (WASM) to render the Mandelbrot Set in real-time.
Notes
-
The maximum number of iterations used in the color calculation starts at 75. Zooming in using this threshold will stop resolving new features fairly quickly.
-
Increasing the max iterations after zooming in can show incredible new details.
-
This visualization will break near zooms of 1x10^13x. The cpp code uses doubles to calculate the set values, and hits the precision limit of doubles around this point.
-
This app may be updated at some point in the future to use an infinite-precision library like Boost at deeper zooms.
Code is available on GitHub