intersectsWithAabb2 method

bool intersectsWithAabb2(
  1. 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);
}