| Approximation |
Robert P. Munafo, 1998 Dec 29.
Here is a summary of practical approximation techniques used in computing views of the Mandelbrot Set:
Integer Math: write an assembly-language function that does the z->z^2+c computation in 16-bit integer math using registers and the processor's built-in integer multiply instruction. Use it when computing views in which the Magnification is low. (The exact rule is: use integer math when the pixel spacing is greater than the Escape Radius divided by 2^16).
Low Resolution: draw the image at lower resolution (by using "chunky" pixels, or by drawing in a small window).
Low Dwell Limit: use the smallest Dwell Limit that still permits actually seeing where you're going.
This work is licensed under a
Creative Commons Attribution 2.5 License
.