]> granicus.if.org Git - graphviz/commitdiff
remove unused 'pedge_flip'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 13 Jan 2022 04:22:11 +0000 (20:22 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 15 Jan 2022 16:17:00 +0000 (08:17 -0800)
lib/mingle/edge_bundling.cpp
lib/mingle/edge_bundling.h

index 2f4b8d0272fd2d0ed026b4b7e2056eee3b97897c..e349692b5d8a2df38169053bd5df4924139ae587 100644 (file)
@@ -86,23 +86,6 @@ void pedge_delete(pedge e){
   free(e);
 }
 
-pedge pedge_flip(pedge e){
-  /* flip the polyline so that last point becomes the first, second last the second, etc*/
-  double *y;
-  double *x = e->x;
-  int i, dim = e->dim;
-  int n = e->npoints;
-
-  y = (double*)MALLOC(sizeof(double)*e->dim);
-  for (i = 0; i < e->npoints/2; i++){
-    memcpy(y, &x[i*dim], sizeof(double)*dim);
-    memcpy(&x[(n-1-i)*dim], &x[i*dim], sizeof(double)*dim);
-    memcpy(&x[i*dim], y, sizeof(double)*dim);
-  }
-  free(y);
-  return e;
-}
-
 static double edge_compatibility(pedge e1, pedge e2){
   /* two edges are u1->v1, u2->v2.
      return 1 if two edges are exactly the same, 0 if they are very different.
index 013a034dd25998e218e905b3a28f9a6a738dacae..19567b9d173e7cf4855c043f19bb1028898a0bf4 100644 (file)
@@ -40,9 +40,6 @@ pedge pedge_new(int np, int dim, double *x);
 pedge pedge_wgt_new(int np, int dim, double *x, double wgt);
 pedge pedge_double(pedge e);
 
-/* flip the polyline so that last point becomes the first, second last the second, etc*/
-pedge pedge_flip(pedge e);
-
 #ifdef __cplusplus
 }
 #endif