equals method

bool equals(
  1. Box3 box
)

Implementation

bool equals(Box3 box) {
  return box.min.equals(min) && box.max.equals(max);
}