]> granicus.if.org Git - graphviz/commitdiff
neatogen voronoi: remove unused 'triangulate' parameter
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 23 Jul 2022 00:29:56 +0000 (17:29 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 28 Jul 2022 01:47:22 +0000 (18:47 -0700)
lib/neatogen/adjust.c
lib/neatogen/voronoi.c
lib/neatogen/voronoi.h

index 18b822ba8ed587a87de5d38723919eac5218491d..73497c9795b4d5f02ee54e98f0f216459137d3db 100644 (file)
@@ -516,7 +516,7 @@ static int vAdjust(void)
 
     rmEquality();
     geomUpdate(0);
-    voronoi(0, nextOne);
+    voronoi(nextOne);
     while (1) {
        newPos();
        iterCnt++;
@@ -544,7 +544,7 @@ static int vAdjust(void)
        }
 
        geomUpdate(1);
-       voronoi(0, nextOne);
+       voronoi(nextOne);
     }
 
     if (Verbose) {
index 311b4f478ec70270e1e8717eba383e483a1f62b9..86a1b14e18ab1318f43bba071e5547b23784d1ab 100644 (file)
@@ -16,8 +16,7 @@
 #include <neatogen/voronoi.h>
 
 
-void voronoi(int triangulate, Site * (*nextsite) (void))
-{
+void voronoi(Site * (*nextsite) (void)) {
     Site *newsite, *bot, *top, *temp, *p;
     Site *v;
     Point newintstar = {0};
index 7ee78456dbd34ae7be029126f0ce05c8e3a4ddd8..cd9c4a59d26004457d7adaea5e67c16c8dcae3a4 100644 (file)
@@ -16,7 +16,7 @@ extern "C" {
 
 #include <neatogen/site.h>
 
-    extern void voronoi(int, Site * (*)(void));
+    extern void voronoi(Site * (*)(void));
 
 #ifdef __cplusplus
 }