@param min
the minimum corner of the axis-aligned rectangle
@param max
the maximum corner of the axis-aligned rectangle
@param center
the circle's center
@param radiusSquared
the squared of the circle's radius
@return <code>true</code> iff the axis-aligned rectangle intersects the circle; <code>false</code> otherwise
Test whether the axis-aligned rectangle with minimum corner <code>min</code> and maximum corner <code>max</code> intersects the circle with the given <code>center</code> and square radius <code>radiusSquared</code>. <p> Reference: <a href="http://stackoverflow.com/questions/4578967/cube-sphere-intersection-test#answer-4579069">http://stackoverflow.com</a>
@param min the minimum corner of the axis-aligned rectangle @param max the maximum corner of the axis-aligned rectangle @param center the circle's center @param radiusSquared the squared of the circle's radius @return <code>true</code> iff the axis-aligned rectangle intersects the circle; <code>false</code> otherwise