MCPcopy Create free account
hub / github.com/AngusJohnson/Clipper2 / UpdateOutrecOwner

Function UpdateOutrecOwner

CPP/Clipper2Lib/src/clipper.engine.cpp:1684–1693  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected