copy method

Box3 copy(
  1. Box3 box
)

Implementation

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

  return this;
}