Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/earcut/
H A Dearcut.hpp102 bool onSegment(const Node* p, const Node* q, const Node* r);
713 …if (o1 == 0 && onSegment(p1, p2, q1)) return true; // p1, q1 and p2 are collinear and p2 lies on p… in intersects()
714 …if (o2 == 0 && onSegment(p1, q2, q1)) return true; // p1, q1 and q2 are collinear and q2 lies on p… in intersects()
715 …if (o3 == 0 && onSegment(p2, p1, q2)) return true; // p2, q2 and p1 are collinear and p1 lies on p… in intersects()
716 …if (o4 == 0 && onSegment(p2, q1, q2)) return true; // p2, q2 and q1 are collinear and q1 lies on p… in intersects()
723 bool Earcut<N>::onSegment(const Node* p, const Node* q, const Node* r) { in onSegment() function in qt_mapbox::detail::Earcut