]> granicus.if.org Git - graphviz/commitdiff
remove unused argument initwid in pathtolines
authorCosta Shulyupin <constantine.shulyupin@gmail.com>
Sun, 13 Feb 2022 09:56:42 +0000 (11:56 +0200)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 15 Feb 2022 19:45:37 +0000 (06:45 +1100)
lib/common/taper.c

index 6da4acb4ebd3a9a4e1cb8f1c0da4226a067f2cd7..ae8ec72c47eae078c643878269a88f696e560b7a 100644 (file)
@@ -179,7 +179,7 @@ static double l2dist (pointf p0, pointf p1)
 /* analyze current path, creating pathpoints array
  * turn all curves into lines
  */
-static vararr_t* pathtolines (bezier* bez, double initwid)
+static vararr_t* pathtolines (bezier* bez)
 {
     int i, j, step;
     double seglen, linelen = 0;
@@ -259,7 +259,7 @@ stroke_t* taper (bezier* bez, radfunc_t radfunc, double initwid, int linejoin, i
     int i, l, n;
     int pathcount, bevel;
     double direction=0, direction_2=0;
-    vararr_t* arr = pathtolines (bez, initwid);
+    vararr_t* arr = pathtolines (bez);
     pathpoint* pathpoints;
     pathpoint cur_point, last_point, next_point;
     double x=0, y=0, dist;