| 626 | } |
| 627 | |
| 628 | struct 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 | |
| 638 | bool LNLib::VoronoiDiagramGenerator::PQinitialize() |
| 639 | { |
nothing calls this directly
no outgoing calls
no test coverage detected