Bump up tolerance. Anything higher is visibly off.

This commit is contained in:
Eric Fischer 2014-09-24 17:40:32 -07:00
parent ed05bc9f7e
commit 4de57b960d

View File

@ -340,7 +340,7 @@ void douglas_peucker(struct draw *geom, int n, double e) {
}
int simplify_lines(struct draw *geom, int n, int z, int detail) {
int res = 1 << (32 - detail - z);
int res = 1 << (32 - detail - z + 2);
int i;
for (i = 0; i < n; i++) {