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

Method PQextractmin

src/LNLib/Algorithm/Voronoi.cpp:628–636  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

626}
627
628struct LNLib::Halfedge* LNLib::VoronoiDiagramGenerator::PQextractmin()
629{
630 struct Halfedge* curr;
631
632 curr = PQhash[PQmin].PQnext;
633 PQhash[PQmin].PQnext = curr->PQnext;
634 PQcount -= 1;
635 return(curr);
636}
637
638bool LNLib::VoronoiDiagramGenerator::PQinitialize()
639{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected