do not round added deltas; fixes #2866
This commit is contained in:
parent
103ed7da83
commit
1d8a89504b
|
@ -652,8 +652,8 @@ no_more_gaps:
|
||||||
/* apply specified / inferred deltas to points */
|
/* apply specified / inferred deltas to points */
|
||||||
for (unsigned int i = 0; i < points.length; i++)
|
for (unsigned int i = 0; i < points.length; i++)
|
||||||
{
|
{
|
||||||
points[i].x += roundf (deltas[i].x);
|
points[i].x += deltas[i].x;
|
||||||
points[i].y += roundf (deltas[i].y);
|
points[i].y += deltas[i].y;
|
||||||
}
|
}
|
||||||
} while (iterator.move_to_next ());
|
} while (iterator.move_to_next ());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue