(item, box, test)
| 124855 | return hits; |
| 124856 | } |
| 124857 | function intersectItem(item, box, test) { |
| 124858 | // test bounds enclosure, bounds intersection, then detailed test |
| 124859 | const bounds21 = item.bounds; |
| 124860 | return box.encloses(bounds21) || box.intersects(bounds21) && test(item, box); |
| 124861 | } |
| 124862 | const clipBounds = new Bounds(); |
| 124863 | function boundClip(mark) { |
| 124864 | const clip4 = mark.clip; |
no test coverage detected