translate method

Box3 translate(
  1. Vector3 offset
)

Implementation

Box3 translate(Vector3 offset) {
  min.add(offset);
  max.add(offset);

  return this;
}