Renamed python class Voronoi to VoronoiDiagram

This commit is contained in:
Markus Lampert
2022-07-29 14:56:24 -07:00
parent 9cc1d277fa
commit 79021f4913
5 changed files with 10 additions and 9 deletions

View File

@@ -45,7 +45,7 @@ std::string VoronoiPy::representation(void) const
{
std::stringstream ss;
ss.precision(5);
ss << "Voronoi("
ss << "VoronoiDiagram("
<< "{" << getVoronoiPtr()->numSegments() << ", " << getVoronoiPtr()->numPoints() << "}"
<< " -> "
<< "{" << getVoronoiPtr()->numCells() << ", " << getVoronoiPtr()->numEdges() << ", " << getVoronoiPtr()->numVertices() << "}"