]> granicus.if.org Git - graphviz/commitdiff
Remove dead assignments from self(Bottom|Top|Right|Left)
authorAlex Henrie <alexhenrie24@gmail.com>
Mon, 25 Jan 2021 00:29:35 +0000 (17:29 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 31 Jan 2021 00:39:12 +0000 (16:39 -0800)
lib/common/splines.c

index d6f0d0c6b20b6907e5e41db3adf5525778d9129d..92ecc96f7e368119b6414d8e57285b56be379919 100644 (file)
@@ -834,7 +834,6 @@ static void selfBottom (edge_t* edges[], int ind, int cnt,
 
     stepx = (sizex / 2.) / cnt;
     stepx = MAX(stepx,2.);
-    pointn = 0;
     np = ND_coord(n);
     tp = ED_tail_port(e).p;
     tp.x += np.x;
@@ -905,7 +904,6 @@ selfTop (edge_t* edges[], int ind, int cnt, double sizex, double stepy,
 
     stepx = (sizex / 2.) / cnt;
     stepx = MAX(stepx, 2.);
-    pointn = 0;
     np = ND_coord(n);
     tp = ED_tail_port(e).p;
     tp.x += np.x;
@@ -1010,7 +1008,6 @@ selfRight (edge_t* edges[], int ind, int cnt, double stepx, double sizey,
 
     stepy = (sizey / 2.) / cnt;
     stepy = MAX(stepy, 2.);
-    pointn = 0;
     np = ND_coord(n);
     tp = ED_tail_port(e).p;
     tp.x += np.x;
@@ -1083,7 +1080,6 @@ selfLeft (edge_t* edges[], int ind, int cnt, double stepx, double sizey,
 
     stepy = (sizey / 2.) / cnt;
     stepy = MAX(stepy,2.);
-    pointn = 0;
     np = ND_coord(n);
     tp = ED_tail_port(e).p;
     tp.x += np.x;