intersectsBox method

bool intersectsBox(
  1. Box3 box
)

Implementation

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