Return if this contains other.
other
bool containsAabb2(Aabb2 other) => min.x < other.min.x && // min.y < other.min.y && max.x > other.max.x && max.y > other.max.y;