| 1682 | |
| 1683 | |
| 1684 | inline void UpdateOutrecOwner(OutRec* outrec) |
| 1685 | { |
| 1686 | OutPt* opCurr = outrec->pts; |
| 1687 | for (; ; ) |
| 1688 | { |
| 1689 | opCurr->outrec = outrec; |
| 1690 | opCurr = opCurr->next; |
| 1691 | if (opCurr == outrec->pts) return; |
| 1692 | } |
| 1693 | } |
| 1694 | |
| 1695 | |
| 1696 | OutPt* ClipperBase::StartOpenPath(Active& e, const Point64& pt) |
nothing calls this directly
no outgoing calls
no test coverage detected