We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I'm working on a Mandelbrot set zoom program. For "regular" images, unzoomed, floating point precision is sufficient. However, once zoomed in a lot, it's no longer enough.
I need to be able to use double precision arithmetic, but Processing's functions like log, etc. are only single precision. Is there a way to have it use Java's double precision functions?
Thanks!
Answers
http://forum.processing.org/two/discussion/7367/elliptical-orbit-kepler#Item_6
http://forum.processing.org/two/discussion/6814/math-accuracy/p1
Just use the native Java Math class.
Great, thanks!