I am writing a Mandelbrot viewer. Everything works except when you get to a very high zoom the image starts to pixilate about at about zoom 10^(-14). I am guessing because i run out of memory in my double vars. What can i use that will allow me to use very small numbers?
I need to use the java.lang.Math class and i dont think that supports bigdecimal
I know nothing about how you’re doing it, but if you can do your calculations in log-space you can deal with tiny numbers much better (since they become large negative numbers).