intersects2D method

bool intersects2D(
  1. Box other
)

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

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