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

Function ExcludeOp

TheForceEngine/TFE_Polygon/clipper.cpp:4380–4387  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4378//------------------------------------------------------------------------------
4379
4380OutPt* ExcludeOp(OutPt* op)
4381{
4382 OutPt* result = op->Prev;
4383 result->Next = op->Next;
4384 op->Next->Prev = result;
4385 result->Idx = 0;
4386 return result;
4387}
4388//------------------------------------------------------------------------------
4389
4390void CleanPolygon(const Path& in_poly, Path& out_poly, double distance)

Callers 1

CleanPolygonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected