mandelbrot-js
mandelbrot-js copied to clipboard
Fast rendering of the Mandelbrot set in HTML5 canvas using JavaScript
Fix link for "The Computer Language Benchmarks Game" Haven't visited the original one, but I assume this is the new site? https://benchmarksgame-team.pages.debian.net/benchmarksgame/description/mandelbrot.html#mandelbrot
You immediately call main() in mandelbrot.js before the page is fully loaded.. You could be getting null references to DOM elements that have not been loaded/initialized yet by the browser....
For now you have limit in zooming (~10^15) because you use javascript 64-bit float. But you can overcome the limit by using floating point expansion technique that is pretty fast....