* SSE approximation of reciprocal square root.
*
assert(abs(inverseSqrt!float(1) - 1) < 1e-3 ); assert(abs(inverseSqrt!double(1) - 1) < 1e-3 );
See Implementation
* SSE approximation of reciprocal square root.