Skip to content

Commit

Permalink
Oh, it helps if I actually call the function
Browse files Browse the repository at this point in the history
  • Loading branch information
e-n-f committed Nov 23, 2024
1 parent 219f47e commit 21f63a7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions clip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2065,6 +2065,9 @@ std::string overzoom(std::vector<source_tile> const &tiles, int nz, int nx, int
}
} else if (t == VT_LINE) {
geom = clip_lines(geom, c.minx, c.miny, c.maxx, c.maxy);
if (c.dv.size() > 0 && geom.size() > 0) {
geom = clip_lines(geom, c.dv);
}
} else if (t == VT_POINT) {
geom = clip_point(geom, c.minx, c.miny, c.maxx, c.maxy);
if (c.dv.size() > 0 && geom.size() > 0) {
Expand Down

0 comments on commit 21f63a7

Please sign in to comment.