https://michurin.github.io/fast-online-mandelbrot-set-explorer/
Just for fun project. It's not totally finished.
This solution is based on WebGL. So, it doesn't work in old browsers and hardware.
There are a lot of Mandelbrot exploring projects, that are focused on palette selection and beautiful result. The goal of the project, in contrast, is to create online fast Mandelbrot and Julia sets viewer that will provide full information about image.
It helps you to find beautiful place and then you could use offline tools to create high resolution and custom colored image.
If you wish to render high resolution you are free to tweak canvas size using your browser's developer tools.
Say something like this on browser debug console:
a = b = 1000; // use a!=b on retina
$($('canvas').get(1)).attr({width: a, height: a, style: `width: ${b}px; height: ${b}px;`});
- Explanation of the Mandelbrot Set (video)
- Best Mandelbrot
- Amazing fractals navigator with ability to view WebGL code (UI is not very friendly, however you won't be disappointed if you spend ten minutes to learn it)
- Ideas for UI
- UI (paletter editor)
- Optimisation hints
- Clear and straightforward code (pure C)