Searched refs:next_pt (Results 1 – 2 of 2) sorted by relevance
24 auto next_pt = std::next(pt); in start_list_on_local_minimum() local27 (pt->y < next_pt->y)) { in start_list_on_local_minimum()32 next_pt++; in start_list_on_local_minimum()33 if (next_pt == points.end()) { next_pt = std::next(points.begin()); } in start_list_on_local_minimum()52 auto next_pt = std::next(begin); in create_bound_towards_maximum() local53 while (pt->y <= next_pt->y) { in create_bound_towards_maximum()55 next_pt++; in create_bound_towards_maximum()56 if (next_pt == points.end()) { pt++; break; } in create_bound_towards_maximum()59 const auto pt_distance = std::distance(begin, next_pt); in create_bound_towards_maximum()65 bnd.points.reserve(static_cast<std::size_t>(std::distance(begin, next_pt))); in create_bound_towards_maximum()[all …]
43 mapbox::geometry::point<T2> const& next_pt) noexcept in edge()47 if (current.y >= next_pt.y) { in edge()48 top = mapbox::geometry::point<T>(static_cast<T>(next_pt.x), static_cast<T>(next_pt.y)); in edge()50 bot = mapbox::geometry::point<T>(static_cast<T>(next_pt.x), static_cast<T>(next_pt.y)); in edge()