Searched refs:bnd_next (Results 1 – 2 of 2) sorted by relevance
27 auto bnd_next = std::next(bnd); in do_maxima() local30 while (bnd_next != active_bounds.end() && bnd_next != bndMaxPair) { in do_maxima()31 if (*bnd_next == nullptr) { in do_maxima()32 ++bnd_next; in do_maxima()36 intersect_bounds(*(*bnd), *(*bnd_next), (*bnd)->current_edge->top, cliptype, in do_maxima()38 std::iter_swap(bnd, bnd_next); in do_maxima()39 bnd = bnd_next; in do_maxima()40 ++bnd_next; in do_maxima()
59 auto bnd_next = std::next(bnd_curr); in horizontals_at_top_scanbeam() local60 while (bnd_next != active_bounds.end() && in horizontals_at_top_scanbeam()61 (*bnd_next == nullptr || (*bnd_next)->current_x < (*bnd_curr)->current_x)) { in horizontals_at_top_scanbeam()62 if (*bnd_next != nullptr && (*bnd_next)->current_edge->top.y != top_y && in horizontals_at_top_scanbeam()63 (*bnd_next)->current_edge->bot.y != top_y) { in horizontals_at_top_scanbeam()64 mapbox::geometry::point<T> pt(wround<T>((*bnd_next)->current_x), top_y); in horizontals_at_top_scanbeam()67 std::iter_swap(bnd_curr, bnd_next); in horizontals_at_top_scanbeam()69 ++bnd_next; in horizontals_at_top_scanbeam()