makeEmpty method

Box2 makeEmpty()

Implementation

Box2 makeEmpty() {
  min.x = min.y = Infinity;
  max.x = max.y = -Infinity;

  return this;
}