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

Function RemoveEdge

TheForceEngine/TFE_Polygon/clipper.cpp:745–753  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

743//------------------------------------------------------------------------------
744
745TEdge* RemoveEdge(TEdge* e)
746{
747 //removes e from double_linked_list (but without removing from memory)
748 e->Prev->Next = e->Next;
749 e->Next->Prev = e->Prev;
750 TEdge* result = e->Next;
751 e->Prev = 0; //flag as removed (see ClipperBase.Clear)
752 return result;
753}
754//------------------------------------------------------------------------------
755
756inline void ReverseHorizontal(TEdge &e)

Callers 1

AddPathMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected