]> granicus.if.org Git - graphviz/commitdiff
gvmap get_polygon_solids: remove unused 'x_poly' parameter
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 20 Jan 2023 15:59:32 +0000 (07:59 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 21 Jan 2023 21:44:04 +0000 (13:44 -0800)
cmd/gvmap/make_map.c

index b172c9839dc77ae812bb46a733841d2f68c351f2..e61725a94fb7bb85606049f10b9fabc8bbddeb5c 100644 (file)
@@ -665,7 +665,7 @@ static int same_edge(int ecur, int elast, int *edge_table){
 }
 
 static void get_polygon_solids(int nt, SparseMatrix E, int ncomps, int *comps_ptr, int *comps,
-                              int *mask, double *x_poly, SparseMatrix *polys){
+                              int *mask, SparseMatrix *polys){
   /*============================================================
 
     polygon slids that will be colored
@@ -992,7 +992,7 @@ static void get_polygons(int exclude_random, int n, int nrandom, int dim, Sparse
     polygon solids
 
     ============================================================*/
-  get_polygon_solids(nt, E, ncomps, comps_ptr, comps, mask, *x_poly, polys);
+  get_polygon_solids(nt, E, ncomps, comps_ptr, comps, mask, polys);
 
   B = get_country_graph(n, E, groups, GRP_RANDOM, GRP_BBOX);
   *country_graph = B;