]> granicus.if.org Git - graphviz/commitdiff
same code in utils.c - eliminate sqrt() ops
authorellson <devnull@localhost>
Tue, 1 Feb 2005 21:51:17 +0000 (21:51 +0000)
committerellson <devnull@localhost>
Tue, 1 Feb 2005 21:51:17 +0000 (21:51 +0000)
lib/common/utils.c
lib/dotgen/dotsplines.c

index e5534ffeef54fa32f432789776ea27e45729be7c..d2f67f910600ce343c8febb541cda4c62c88e4f2 100644 (file)
@@ -25,7 +25,7 @@
 
 
 /* local funcs */
-static double dist(pointf, pointf);
+static double dist2(pointf, pointf);
 
 void *zmalloc(size_t nbytes)
 {
@@ -633,26 +633,26 @@ int mapbool(char *p)
     return atoi(p);
 }
 
-static double dist(p, q)
+static double dist2(p, q) /* return square of dist 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);
 }
 
 point dotneato_closest(splines * spl, point p)
 {
     int i, j, k, besti, bestj;
-    double bestdist, d, dlow, dhigh;
+    double bestdist2, d2, dlow2, dhigh2;
     double low, high, t;
     pointf c[4], pt2, pt;
     point rv;
     bezier bz;
 
     besti = bestj = -1;
-    bestdist = 1e+38;
+    bestdist2 = 1e+38;
     pt.x = p.x;
     pt.y = p.y;
     for (i = 0; i < spl->size; i++) {
@@ -662,11 +662,11 @@ point dotneato_closest(splines * spl, point p)
 
            b.x = bz.list[j].x;
            b.y = bz.list[j].y;
-           d = dist(b, pt);
-           if ((bestj == -1) || (d < bestdist)) {
+           d2 = dist2(b, pt);
+           if ((bestj == -1) || (d2 < bestdist2)) {
                besti = i;
                bestj = j;
-               bestdist = d;
+               bestdist2 = d2;
            }
        }
     }
@@ -681,21 +681,21 @@ point dotneato_closest(splines * spl, point p)
     }
     low = 0.0;
     high = 1.0;
-    dlow = dist(c[0], pt);
-    dhigh = dist(c[3], pt);
+    dlow2 = dist2(c[0], pt);
+    dhigh2 = dist2(c[3], pt);
     do {
        t = (low + high) / 2.0;
        pt2 = Bezier(c, 3, t, NULL, NULL);
-       if (fabs(dlow - dhigh) < 1.0)
+       if (fabs(dlow2 - dhigh2) < 1.0)
            break;
-       if (low == high)
+       if (fabs(high - low) < .00001)
            break;
-       if (dlow < dhigh) {
+       if (dlow2 < dhigh2) {
            high = t;
-           dhigh = dist(pt2, pt);
+           dhigh2 = dist2(pt2, pt);
        } else {
            low = t;
-           dlow = dist(pt2, pt);
+           dlow2 = dist2(pt2, pt);
        }
     } while (1);
     rv.x = pt2.x;
index c4c7b1a294151118a78de39be214c3fdb455dcee..2f8ac917e239364f2187d5efd9fd1c6f5ade0b6a 100644 (file)
@@ -1394,7 +1394,7 @@ point closest(splines * spl, point p)
        pt2 = Bezier(c, 3, t, NULL, NULL);
        if (fabs(dlow2 - dhigh2) < 1.0)
            break;
-       if (high - low < .00001)
+       if (fabs(high - low) < .00001)
            break;
        if (dlow2 < dhigh2) {
            high = t;