intersectsBox method

bool intersectsBox(
  1. AABB box
)

Implementation

bool intersectsBox(AABB box) {
  return intersectBox(box) != null;
}