+ revert as it was breaking polygons in some cases

This commit is contained in:
artemp 2013-02-20 14:11:07 +00:00
parent 617542c136
commit 997e807f3d

View file

@ -200,14 +200,13 @@ namespace agg
*x++ = (T)(x1 + touty * deltax);
*y++ = (T)yout;
}
++np;
}
else if(*x != x2 && *y != y2)
else
{
*x++ = x2;
*y++ = y2;
++np;
}
++np;
}
else
{