MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / DisposeOutPts

Function DisposeOutPts

TheForceEngine/TFE_Polygon/clipper.cpp:706–716  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

704//------------------------------------------------------------------------------
705
706void DisposeOutPts(OutPt*& pp)
707{
708 if (pp == 0) return;
709 pp->Prev->Next = 0;
710 while( pp )
711 {
712 OutPt *tmpPp = pp;
713 pp = pp->Next;
714 delete tmpPp;
715 }
716}
717//------------------------------------------------------------------------------
718
719inline void InitEdge(TEdge* e, TEdge* eNext, TEdge* ePrev, const IntPoint& Pt)

Callers 3

DisposeOutRecMethod · 0.85
FixupOutPolylineMethod · 0.85
FixupOutPolygonMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected