]> granicus.if.org Git - graphviz/commitdiff
Fix github issue #919; general cleanup.
authorEmden Gansner <emdenrg@google.com>
Thu, 12 Jan 2017 21:29:42 +0000 (16:29 -0500)
committerEmden Gansner <emdenrg@google.com>
Thu, 12 Jan 2017 21:29:42 +0000 (16:29 -0500)
lib/fdpgen/fdp.h
lib/fdpgen/fdpinit.c
lib/fdpgen/layout.c
lib/fdpgen/tlayout.c

index c68ceb5eb3ad5df7c20819007c9e9fc187e1dabb..6dcab4eb476cda2b263ff97d4c6789a1da5ce225 100644 (file)
@@ -128,10 +128,8 @@ struct fdpParms_s {
 typedef struct fdpParms_s fdpParms_t;
 
     extern void fdp_layout(Agraph_t * g);
-    extern void fdp_nodesize(node_t *, boolean);
-    extern void fdp_init_graph(Agraph_t * g);
-    extern void fdp_init_node_edge(Agraph_t * g);
     extern void fdp_cleanup(Agraph_t * g);
+    extern void fdp_init_node_edge(graph_t * g);
 
 #ifdef __cplusplus
 }
index b390fccc8b2b9c56922dc4603ccce50e79d0c727..81ab0754bd8e1126e8084a223a2a5b1b8fdc3ea2 100644 (file)
@@ -46,9 +46,9 @@ static void initialPositions(graph_t * g)
            c = '\0';
            if (sscanf(p, "%lf,%lf%c", pvec, pvec + 1, &c) >= 2) {
                if (PSinputscale > 0.0) {
-                   int i;
-                   for (i = 0; i < NDIM; i++)
-                       pvec[i] = pvec[i] / PSinputscale;
+                   int j;
+                   for (j = 0; j < NDIM; j++)
+                       pvec[j] = pvec[j] / PSinputscale;
                }
                ND_pinned(np) = P_SET;
                if ((c == '!')
index c61bd0c5abaccc6745e53fb1945000b208ab3e3c..68bddba079d8b322854788ff6cb449585b50158f 100644 (file)
@@ -136,7 +136,7 @@ finalCC(graph_t * g, int c_cnt, graph_t ** cc, point * pts, graph_t * rg,
     if (isRoot || isEmpty)
        margin = 0;
     else
-       margin = late_int (g, G_margin, CL_OFFSET, 0);
+       margin = late_int (rg, G_margin, CL_OFFSET, 0);
     pt.x = -bb.LL.x + margin;
     pt.y = -bb.LL.y + margin + GD_border(rg)[BOTTOM_IX].y;
     bb.LL.x = 0;
@@ -1002,11 +1002,11 @@ static void setBB(graph_t * g)
  * Initialize graph-dependent information and
  * state variable.s
  */
-void init_info(graph_t * g, layout_info * infop)
+static void init_info(graph_t * g, layout_info * infop)
 {
-    infop->G_coord = agattr(g,AGRAPH, "coords", NULL);
-    infop->G_width = agattr(g,AGRAPH, "width", NULL);
-    infop->G_height = agattr(g, AGRAPH,"height", NULL);
+    infop->G_coord = agattr(g, AGRAPH, "coords", NULL);
+    infop->G_width = agattr(g, AGRAPH, "width", NULL);
+    infop->G_height = agattr(g, AGRAPH, "height", NULL);
     infop->rootg = g;
     infop->gid = 0;
     infop->pack.mode = getPackInfo(g, l_node, CL_OFFSET / 2, &(infop->pack));
@@ -1055,7 +1055,7 @@ mkClusters (graph_t * g, clist_t* pclist, graph_t* parent)
     }
 }
 
-void fdp_init_graph(Agraph_t * g)
+static void fdp_init_graph(Agraph_t * g)
 {
     setEdgeType (g, ET_LINE);
     GD_alg(g) = (void *) NEW(gdata);   /* freed in cleanup_graph */
@@ -1067,7 +1067,7 @@ void fdp_init_graph(Agraph_t * g)
     fdp_init_node_edge(g);
 }
 
-void fdpLayout(graph_t * g)
+static void fdpLayout(graph_t * g)
 {
     layout_info info;
 
index 643e6ddab51519377ec6359997f058a4dc2b0239..7a1a0110db76caff0bec5fa2b8363cc2c36be434 100644 (file)
@@ -468,7 +468,7 @@ static pointf initPositions(graph_t * g, bport_t * pp)
     double size;
     Agnode_t *np;
     int n_pos = 0;             /* no. of nodes with position info */
-    box bb = { {0, 0}, {0, 0} };
+    boxf bb = { {0, 0}, {0, 0} };
     pointf ctr;                        /* center of boundary ellipse */
     long local_seed;
     double PItimes2 = M_PI * 2.0;