Home
last modified time | relevance | path

Searched refs:next_pt (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dtile_cover_impl.cpp24 auto next_pt = std::next(pt); in start_list_on_local_minimum() local
27 (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() local
53 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 …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/
H A Dedge.hpp43 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()