I am creating a mandelbrot set application in java, but after a certain zoom it starts to look weird because double
s are not accurate enough. I refactored my code to work with BigDecimal
s, but the performance was absolutely terrible.
Is there a way to achieve at least a little more accuracy while still having acceptable performance?