hull method
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);
}
Set the min and max of this so that this is a hull of this and
other
.
void hull(Aabb2 other) {
Vector2.min(_min, other._min, _min);
Vector2.max(_max, other._max, _max);
}