@dra2020/baseclient 1.0.25 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4816,7 +4816,7 @@ function boundboxIntersects(bb1, bb2) {
4816
4816
  }
4817
4817
  exports.boundboxIntersects = boundboxIntersects;
4818
4818
  function boundboxContains(bb, x, y) {
4819
- return !(bb.left >= x || bb.right < x || bb.top >= y || bb.bottom < y);
4819
+ return !(bb.left >= x || bb.right < x || bb.top <= y || bb.bottom > y);
4820
4820
  }
4821
4821
  exports.boundboxContains = boundboxContains;
4822
4822