intersectsBox method

bool intersectsBox(
  1. BoundingBox box
)

Implementation

bool intersectsBox(BoundingBox box) {
  return box.intersectsPlane(this);
}