hull method

void hull(
  1. Aabb2 other
)

Set the min and max of this so that this is a hull of this and other.

Implementation

void hull(Aabb2 other) {
  Vector2.min(_min, other._min, _min);
  Vector2.max(_max, other._max, _max);
}