We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 507dd26 commit efa36dcCopy full SHA for efa36dc
src/spatialjoin/Sweeper.h
@@ -548,10 +548,10 @@ class Sweeper {
548
return 1;
549
550
// points before lines
551
- if (boxa->type == POINT &&
+ if ((boxa->type == POINT || boxa->type == FOLDED_POINT) &&
552
(boxb->type == SIMPLE_LINE || boxb->type == LINE))
553
return -1;
554
- if (boxb->type == POINT &&
+ if ((boxb->type == POINT || boxb->type == FOLDED_POINT) &&
555
(boxa->type == SIMPLE_LINE || boxa->type == LINE))
556
557
0 commit comments