Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/
H A Dring_util.hpp387 bool first_is_bottom_point(const_point_ptr<T> btmPt1, const_point_ptr<T> btmPt2) { in first_is_bottom_point() argument
400 p = btmPt2->prev; in first_is_bottom_point()
401 while ((*p == *btmPt2) && (p != btmPt2)) { in first_is_bottom_point()
404 double dx2p = std::fabs(get_dx(*btmPt2, *p)); in first_is_bottom_point()
406 p = btmPt2->next; in first_is_bottom_point()
407 while ((*p == *btmPt2) && (p != btmPt2)) { in first_is_bottom_point()
410 double dx2n = std::fabs(get_dx(*btmPt2, *p)); in first_is_bottom_point()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/clipper/
H A Dclipper.cpp798 bool FirstIsBottomPt(const OutPt* btmPt1, const OutPt* btmPt2) in FirstIsBottomPt() argument
807 p = btmPt2->Prev; in FirstIsBottomPt()
808 while ((p->Pt == btmPt2->Pt) && (p != btmPt2)) p = p->Prev; in FirstIsBottomPt()
809 double dx2p = std::fabs(GetDx(btmPt2->Pt, p->Pt)); in FirstIsBottomPt()
810 p = btmPt2->Next; in FirstIsBottomPt()
811 while ((p->Pt == btmPt2->Pt) && (p != btmPt2)) p = p->Next; in FirstIsBottomPt()
812 double dx2n = std::fabs(GetDx(btmPt2->Pt, p->Pt)); in FirstIsBottomPt()