possiblyIntersects abstract method

bool possiblyIntersects(
  1. T other
)

This should be a cheaper calculation than comparing the exact boundaries if the exact calculation is expensive. This method could for example check two Rects or Aabb2s against each other.

Implementation

bool possiblyIntersects(T other);