| 765 | } |
| 766 | |
| 767 | void LNLib::VoronoiDiagramGenerator::pushGraphEdge(float x1, float y1, float x2, float y2) |
| 768 | { |
| 769 | if (genVoronoi) |
| 770 | { |
| 771 | GraphEdge* newEdge = new GraphEdge; |
| 772 | newEdge->next = allEdges; |
| 773 | allEdges = newEdge; |
| 774 | newEdge->x1 = x1; |
| 775 | newEdge->y1 = y1; |
| 776 | newEdge->x2 = x2; |
| 777 | newEdge->y2 = y2; |
| 778 | } |
| 779 | } |
| 780 | |
| 781 | void LNLib::VoronoiDiagramGenerator::pushDelaunayGraphEdge(float x1, float y1, float x2, float y2) |
| 782 | { |
nothing calls this directly
no outgoing calls
no test coverage detected