]> granicus.if.org Git - graphviz/commitdiff
Revert "Fix: shape coordinates close to 0 now absolutely 0"
authorJohn Ellson <john.ellson@comcast.net>
Thu, 24 Nov 2016 19:23:52 +0000 (14:23 -0500)
committerJohn Ellson <john.ellson@comcast.net>
Thu, 24 Nov 2016 19:23:52 +0000 (14:23 -0500)
This reverts commit a55127dbe7d5557eeb019e1ed50fae16f84c2547.

lib/common/shapes.c

index 733ccb42dc28186ade99a72571fa856908142df4..61e4fe1969eaebf50fd44f44a485d7d395702381 100644 (file)
@@ -2888,18 +2888,7 @@ static void poly_gencode(GVJ_t * job, node_t * n)
        for (i = 0; i < sides; i++) {
            P = vertices[i + j * sides];
            AF[i].x = P.x * xsize + ND_coord(n).x;
-        AF[i].y = P.y * ysize + ND_coord(n).y;
-
-        // Set values that are close to zero, to absolute zero.
-        // This prevents coördinates like 7.10543e-15
-        if (AF[i].x > -0.00001 && AF[i].x < 0.00001)
-        {
-            AF[i].x = 0;
-        }
-        if (AF[i].y > -0.00001 && AF[i].y < 0.00001)
-        {
-            AF[i].y = 0;
-        }
+           AF[i].y = P.y * ysize + ND_coord(n).y;
        }
        if (sides <= 2) {
            if ((style & WEDGED) && (j == 0) && multicolor(fillcolor)) {