*p++ = '-';
x = -x;
}
- if (floor (x + EPSILON / 2) < 1)
+ if ((int)floor ((x + EPSILON / 2) < 1))
{
*p++ = '0';
*p++ = '.';
x -= floor (x + EPSILON / 2);
for (j = i; j < 6; j++)
x *= 10;
- ix = (int)floor (x + 0.5);
+ ix = floor (x + 0.5);
for (j = 0; j < i; j++)
ix *= 10;
/* z3_0_dot is dist z0-z3 squared */
z3_0_dot = x3_0 * x3_0 + y3_0 * y3_0;
- /* todo: this test is far from satisfactory. */
if (z3_0_dot < 0.001)
- goto nosubdivide;
+ {
+ /* if start and end point are almost identical, the flatness tests
+ * don't work properly, so fall back on testing whether both of
+ * the other two control points are the same as the start point,
+ * too.
+ */
+ if (hypot(x1 - x0, y1 - y0) < 0.001
+ && hypot(x2 - x0, y2 - y0) < 0.001)
+ goto nosubdivide;
+ else
+ goto subdivide;
+ }
/* we can avoid subdivision if:
if (z2_dot + z2_dot > z3_0_dot)
goto subdivide;
+
nosubdivide:
/* don't subdivide */
art_vpath_add_point (p_vpath, pn, pn_max,