intersectsBox method

bool intersectsBox(
  1. AABB box
)

Implementation

bool intersectsBox(AABB box) {
  return box.intersectsSphere(this);
}