| 423 | } |
| 424 | |
| 425 | inline void UncoupleOutRec(Active ae) |
| 426 | { |
| 427 | OutRec* outrec = ae.outrec; |
| 428 | if (!outrec) return; |
| 429 | outrec->front_edge->outrec = nullptr; |
| 430 | outrec->back_edge->outrec = nullptr; |
| 431 | outrec->front_edge = nullptr; |
| 432 | outrec->back_edge = nullptr; |
| 433 | } |
| 434 | |
| 435 | |
| 436 | inline bool PtsReallyClose(const Point64& pt1, const Point64& pt2) |