Home
last modified time | relevance | path

Searched refs:outRec2 (Results 1 – 3 of 3) 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.hpp459 ring_ptr<T> get_lower_most_ring(ring_ptr<T> outRec1, ring_ptr<T> outRec2) { in get_lower_most_ring() argument
464 if (!outRec2->bottom_point) { in get_lower_most_ring()
465 outRec2->bottom_point = get_bottom_point(outRec2->points); in get_lower_most_ring()
468 point_ptr<T> OutPt2 = outRec2->bottom_point; in get_lower_most_ring()
472 return outRec2; in get_lower_most_ring()
476 return outRec2; in get_lower_most_ring()
478 return outRec2; in get_lower_most_ring()
484 return outRec2; in get_lower_most_ring()
515 ring_ptr<T> outRec2 = b2.ring; in append_ring() local
521 if (ring1_child_below_ring2(outRec1, outRec2)) { in append_ring()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/clipper/
H A Dclipper.cpp2327 OutRec* GetLowermostRec(OutRec *outRec1, OutRec *outRec2) in GetLowermostRec() argument
2332 if (!outRec2->BottomPt) in GetLowermostRec()
2333 outRec2->BottomPt = GetBottomPt(outRec2->Pts); in GetLowermostRec()
2335 OutPt *OutPt2 = outRec2->BottomPt; in GetLowermostRec()
2337 else if (OutPt1->Pt.Y < OutPt2->Pt.Y) return outRec2; in GetLowermostRec()
2339 else if (OutPt1->Pt.X > OutPt2->Pt.X) return outRec2; in GetLowermostRec()
2340 else if (OutPt1->Next == OutPt1) return outRec2; in GetLowermostRec()
2343 else return outRec2; in GetLowermostRec()
2347 bool OutRec1RightOfOutRec2(OutRec* outRec1, OutRec* outRec2) in OutRec1RightOfOutRec2() argument
2352 if (outRec1 == outRec2) return true; in OutRec1RightOfOutRec2()
[all …]
H A Dclipper.h346 bool JoinPoints(Join *j, OutRec* outRec1, OutRec* outRec2);