common: Remove dead code

This commit is contained in:
Fabiano Fidêncio 2014-09-01 15:45:20 +02:00 committed by Christophe Fergeau
parent 840bcfe7a2
commit dde1c62a91

View File

@ -1835,15 +1835,6 @@ miPolyBuildEdge (double x0, double y0, double k, /* x0 * dy - y0 * dx */
dx = -dx;
k = -k;
}
#ifdef NOTDEF
{
double realk, kerror;
realk = x0 * dy - y0 * dx;
kerror = Fabs (realk - k);
if (kerror > .1)
printf ("realk: %g k: %g\n", realk, k);
}
#endif
y = ICEIL (y0);
xady = ICEIL (k) + y * dx;