| 616 | } |
| 617 | |
| 618 | struct LNLib::PointVDG LNLib::VoronoiDiagramGenerator::PQ_min() |
| 619 | { |
| 620 | struct PointVDG answer; |
| 621 | |
| 622 | while (PQhash[PQmin].PQnext == (struct Halfedge*)NULL) { PQmin += 1; }; |
| 623 | answer.x = PQhash[PQmin].PQnext->vertex->coord.x; |
| 624 | answer.y = PQhash[PQmin].PQnext->ystar; |
| 625 | return (answer); |
| 626 | } |
| 627 | |
| 628 | struct LNLib::Halfedge* LNLib::VoronoiDiagramGenerator::PQextractmin() |
| 629 | { |
nothing calls this directly
no outgoing calls
no test coverage detected