makeEmpty method

Box2 makeEmpty()

Implementation

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

  return this;
}