MCPcopy Create free account
hub / github.com/BIMCoderLiang/LNLib / ELinsert

Method ELinsert

src/LNLib/Algorithm/Voronoi.cpp:250–256  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

248}
249
250void LNLib::VoronoiDiagramGenerator::ELinsert(struct Halfedge* lb, struct Halfedge* newHe)
251{
252 newHe->ELleft = lb;
253 newHe->ELright = lb->ELright;
254 (lb->ELright)->ELleft = newHe;
255 lb->ELright = newHe;
256}
257
258/* Get entry from hash table, pruning any deleted nodes */
259struct LNLib::Halfedge* LNLib::VoronoiDiagramGenerator::ELgethash(int b)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected