I was thinking about the horrible times I've taken spent in Numerical Analysis course.
Which basically calculates a square root, uses using Newton's calculus approximation function (cant remember the exact name).
It should be usable and might even be fasteron , it's from one of the integral plane.phenomenal id software's game!
It's written in C++ but it should not be too hard to reuse the same technique in Java once you get the idea:
Newton's method explained at wikipedia: http://en.wikipedia.org/wiki/Newton%27s_method
You can follow the link for more explanation of how it works, but if you don't care much, then this is roughly what I remember from reading the blog and from taking the Numerical Analysis course:
* (long*) &y is basically a fast convert-to-long function so integer operations can be applied on the raw bytes.0x5f3759df - (i >> 1); line is a pre-calculated seed value for the approximation function.* (float*) &i converts the value back to floating point.y = y * ( threehalfs - ( x2 * y * y ) ) line bascially iterates the value over the function again.The approximation function gives more precise values the more you iterate the function over the result. In Quake's case, one iteration is "good enough", but if it wasn't for you... then you could add as much iteration as you need.
This should be faster because it reduces the number of division operations done in naive square rooting down to a simple divide by 2 (actually a * 0.5F multiply operation) and replace it with a few fixed number of multiplication operations instead.
