]> granicus.if.org Git - graphviz/commitdiff
use P2PF and PF2P macros
authorellson <devnull@localhost>
Tue, 1 Feb 2005 22:31:32 +0000 (22:31 +0000)
committerellson <devnull@localhost>
Tue, 1 Feb 2005 22:31:32 +0000 (22:31 +0000)
lib/common/utils.c
lib/dotgen/dotsplines.c

index d2f67f910600ce343c8febb541cda4c62c88e4f2..64c5efd577009fd65c15e17a474689f0467edde7 100644 (file)
@@ -24,9 +24,6 @@
 #endif
 
 
-/* local funcs */
-static double dist2(pointf, pointf);
-
 void *zmalloc(size_t nbytes)
 {
     char *rv = malloc(nbytes);
@@ -633,10 +630,10 @@ int mapbool(char *p)
     return atoi(p);
 }
 
-static double dist2(p, q) /* return square of dist between p and q */
-pointf p, q;
+static double dist2(pointf p, pointf q) /* return square of dist between p and q */
 {
     double d0, d1;
+
     d0 = p.x - q.x;
     d1 = p.y - q.y;
     return (d0 * d0 + d1 * d1);
@@ -645,7 +642,7 @@ pointf p, q;
 point dotneato_closest(splines * spl, point p)
 {
     int i, j, k, besti, bestj;
-    double bestdist2, d2, dlow2, dhigh2;
+    double bestdist2, d2, dlow2, dhigh2; /* squares of distances */
     double low, high, t;
     pointf c[4], pt2, pt;
     point rv;
@@ -653,8 +650,7 @@ point dotneato_closest(splines * spl, point p)
 
     besti = bestj = -1;
     bestdist2 = 1e+38;
-    pt.x = p.x;
-    pt.y = p.y;
+    P2PF(p, pt);
     for (i = 0; i < spl->size; i++) {
        bz = spl->list[i];
        for (j = 0; j < bz.size; j++) {
@@ -698,8 +694,7 @@ point dotneato_closest(splines * spl, point p)
            dlow2 = dist2(pt2, pt);
        }
     } while (1);
-    rv.x = pt2.x;
-    rv.y = pt2.y;
+    PF2P(pt2, rv);
     return rv;
 }
 
index 2f8ac917e239364f2187d5efd9fd1c6f5ade0b6a..a702bcd12a4322ccb289a315a49bab6f95c4e309 100644 (file)
@@ -87,10 +87,6 @@ static void completeflatpath(path *, pathend_t *, pathend_t *, int, int,
                             int, int, int, box *, box *, int, int);
 static void completeregularpath(path *, Agedge_t *, Agedge_t *,
                                pathend_t *, pathend_t *, box *, int, int);
-#if 0
-static double dist(pointf, pointf);
-#endif
-static double dist2(pointf, pointf);
 static int edgecmp(Agedge_t **, Agedge_t **);
 static Agedge_t *getmainedge(Agedge_t *);
 static box makeflatcomponent(box, box, int, int, int, int, int);
@@ -1328,30 +1324,19 @@ static edge_t *bot_bound(edge_t * e, int side)
     return ans;
 }
 
-static double dist2(p, q) /* square of scalar distance between p and q */
-pointf p, q;
+static double dist2(pointf p, pointf q) /* square of distance between p and q */
 {
     double d0, d1;
-    d0 = p.x - q.x;
-    d1 = p.y - q.y;
-    return (d0 * d0 + d1 * d1);
-}
 
-#if 0
-static double dist(p, q) /* scalar distance between p and q */
-pointf p, q;
-{
-    double d0, d1;
     d0 = p.x - q.x;
     d1 = p.y - q.y;
-    return sqrt(d0 * d0 + d1 * d1);
+    return (d0 * d0 + d1 * d1);
 }
-#endif
 
 point closest(splines * spl, point p)
 {
     int i, j, k, besti, bestj;
-    double bestdist2, d2, dlow2, dhigh2;
+    double bestdist2, d2, dlow2, dhigh2; /* squares of distance */
     double low, high, t;
     pointf c[4], pt2, pt;
     point rv;
@@ -1359,8 +1344,7 @@ point closest(splines * spl, point p)
 
     besti = bestj = -1;
     bestdist2 = 1e+38;
-    pt.x = p.x;
-    pt.y = p.y;
+    P2PF(p, pt);
     for (i = 0; i < spl->size; i++) {
        bz = spl->list[i];
        for (j = 0; j < bz.size; j++) {
@@ -1404,8 +1388,7 @@ point closest(splines * spl, point p)
            dlow2 = dist2(pt2, pt);
        }
     } while (1);
-    rv.x = pt2.x;
-    rv.y = pt2.y;
+    PF2P(pt2, rv);
     return rv;
 }