translate method

Box2 translate(
  1. Vector2 offset
)

Implementation

Box2 translate(Vector2 offset) {
  min.add(offset);
  max.add(offset);

  return this;
}