Ejemplo n.º 1
0
 private boolean rectRoundCollisionCheck(
     float x, float y, float radius, ReadableRectangle bounds) {
   return GeomUtil.circleRectCollision(
       x, y, radius, bounds.getX(), bounds.getY(), bounds.getWidth(), bounds.getHeight());
 }