]> granicus.if.org Git - graphviz/commitdiff
pathplan dist_n: rephrase an open coded 'hypot'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 6 Mar 2022 22:58:33 +0000 (14:58 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 9 Mar 2022 07:33:29 +0000 (23:33 -0800)
lib/pathplan/route.c

index f41a0d610b595a9d86e53ac27b7aeccd12b2b80b..7857e2c9b37251d6df4fee94fda4a56e97112d0d 100644 (file)
@@ -196,9 +196,7 @@ static double dist_n(Ppoint_t * p, int n)
 
     rv = 0.0;
     for (i = 1; i < n; i++) {
-       rv +=
-           sqrt((p[i].x - p[i - 1].x) * (p[i].x - p[i - 1].x) +
-                (p[i].y - p[i - 1].y) * (p[i].y - p[i - 1].y));
+       rv += hypot(p[i].x - p[i - 1].x, p[i].y - p[i - 1].y);
     }
     return rv;
 }