union method

Box3 union(
  1. Box3 box
)

Implementation

Box3 union(Box3 box) {
  min.min(box.min);
  max.max(box.max);

  return this;
}