intersects2D method

  1. @override
bool intersects2D(
  1. Box other
)
override

Returns true if this bounding box intersects with other box in 2D.

Only x ja y (or lon and lat) are compared on intersection calculation.

Implementation

@override
bool intersects2D(Box other) => Box.testIntersects2D(this, other);