intersectsWithAabb2 method Null safety
- Aabb2 other
 
Return if this intersects with other.
Implementation
bool intersectsWithAabb2(Aabb2 other) {
  final otherMax = other._max;
  final otherMin = other._min;
  return (_min.x <= otherMax.x) &&
      (_min.y <= otherMax.y) &&
      (_max.x >= otherMin.x) &&
      (_max.y >= otherMin.y);
}