mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-04 17:49:06 +00:00
Optimize away deltas of 0
This commit is contained in:
parent
581105dc9a
commit
7bb79dab8e
12
tile.cc
12
tile.cc
@ -130,12 +130,14 @@ void write_tile(struct index *start, struct index *end, char *metabase, unsigned
|
||||
int dx = wwx - px;
|
||||
int dy = wwy - py;
|
||||
|
||||
feature->add_geometry((dx << 1) ^ (dx >> 31));
|
||||
feature->add_geometry((dy << 1) ^ (dy >> 31));
|
||||
if (dx != 0 || dy != 0 || length == 0) {
|
||||
feature->add_geometry((dx << 1) ^ (dx >> 31));
|
||||
feature->add_geometry((dy << 1) ^ (dy >> 31));
|
||||
|
||||
px = wwx;
|
||||
py = wwy;
|
||||
length++;
|
||||
px = wwx;
|
||||
py = wwy;
|
||||
length++;
|
||||
}
|
||||
|
||||
//printf("%lld,%lld ", wwx, wwy);
|
||||
} else if (op == VT_CLOSEPATH) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user