Home
last modified time | relevance | path

Searched refs:pt4 (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 Dutil.hpp70 mapbox::geometry::point<T> const& pt4) { in slopes_equal() argument
71 return (pt1.y - pt2.y) * (pt3.x - pt4.x) == (pt1.x - pt2.x) * (pt3.y - pt4.y); in slopes_equal()
H A Dtopology_correction.hpp215 point_ptr<T> pt4 = pt2->prev; in correct_self_intersection() local
216 pt1->prev = pt4; in correct_self_intersection()
217 pt4->next = pt1; in correct_self_intersection()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/clipper/
H A Dclipper.cpp567 const IntPoint pt3, const IntPoint pt4, bool UseFullInt64Range) in SlopesEqual() argument
571 return Int128Mul(pt1.Y-pt2.Y, pt3.X-pt4.X) == Int128Mul(pt1.X-pt2.X, pt3.Y-pt4.Y); in SlopesEqual()
574 return (pt1.Y-pt2.Y)*(pt3.X-pt4.X) == (pt1.X-pt2.X)*(pt3.Y-pt4.Y); in SlopesEqual()