]> granicus.if.org Git - graphviz/commitdiff
remove useless use_line parameter in make_map.c
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 17 Mar 2021 01:56:47 +0000 (18:56 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 29 Mar 2021 02:04:22 +0000 (19:04 -0700)
cmd/gvmap/make_map.c

index ccaf7e145b02d44785ebf4aa618632c73bfcc0d5..4053f0562da1bb734a9e03c5e9eec3b36cc4c8ab 100644 (file)
@@ -331,12 +331,8 @@ static void dot_polygon(agxbuf *sbuff, int np, float *xp, float *yp, real line_w
   }
 }
 
-static void dot_one_poly(agxbuf *sbuff, int use_line, real line_width, int fill, int np, float *xp, float *yp, char *cstring){
-  if (use_line){
-    dot_polygon(sbuff, np, xp, yp, line_width, fill, cstring);
-  } else {
-    dot_polygon(sbuff, np, xp, yp, line_width, fill, cstring);
-  }
+static void dot_one_poly(agxbuf *sbuff, real line_width, int fill, int np, float *xp, float *yp, char *cstring){
+  dot_polygon(sbuff, np, xp, yp, line_width, fill, cstring);
 }
 
 static void plot_dot_polygons(agxbuf *sbuff, real line_width, char *line_color, SparseMatrix polys, real *x_poly, int *polys_groups, float *r, float *g, float *b, char *opacity){
@@ -363,16 +359,16 @@ static void plot_dot_polygons(agxbuf *sbuff, real line_width, char *line_color,
        if (r && g && b) {
          rgb2hex(r[polys_groups[i]], g[polys_groups[i]], b[polys_groups[i]], cstring, opacity);
        }
-       dot_one_poly(sbuff, use_line, line_width, fill, np, xp, yp, cstring);
+       dot_one_poly(sbuff, line_width, fill, np, xp, yp, cstring);
        np = 0;/* start a new polygon */
       } 
       xp[np] = x_poly[2*ja[j]]; yp[np++] = x_poly[2*ja[j]+1];
     }
     if (use_line) {
-      dot_one_poly(sbuff, use_line, line_width, fill, np, xp, yp, line_color);
+      dot_one_poly(sbuff, line_width, fill, np, xp, yp, line_color);
     } else {
       /* why set fill to polys_groups[i]?*/
-      dot_one_poly(sbuff, use_line, -1, 1, np, xp, yp, cstring);
+      dot_one_poly(sbuff, -1, 1, np, xp, yp, cstring);
     }
   }
   FREE(xp);