Home
last modified time | relevance | path

Searched full:point (Results 1 – 25 of 7698) sorted by relevance

12345678910>>...308

/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/itemview_transitions/
H A DOsloListModel.qml58 Qt.point(0.530021277778,0.290828950269)
59 , Qt.point(0.530022955556,0.290828551201)
60 , Qt.point(0.530027338889,0.290827143373)
61 , Qt.point(0.530029541667,0.290826638991)
62 , Qt.point(0.530033122222,0.290825979412)
63 , Qt.point(0.530034466667,0.290825785418)
64 , Qt.point(0.530036788889,0.290825513826)
65 , Qt.point(0.530038238889,0.290825391887)
66 , Qt.point(0.530039372222,0.290825319831)
67 , Qt.point(0.530041136111,0.290825170178)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/geometries/register/
H A Dpoint.hpp22 // Starting point, specialize basic traits necessary to register a point
23 #define BOOST_GEOMETRY_DETAIL_SPECIALIZE_POINT_TRAITS(Point, Dim, CoordinateType, CoordinateSystem)… argument
24 template<> struct tag<Point> { typedef point_tag type; }; \
25 template<> struct dimension<Point> : boost::mpl::int_<Dim> {}; \
26 template<> struct coordinate_type<Point> { typedef CoordinateType type; }; \
27 template<> struct coordinate_system<Point> { typedef CoordinateSystem type; };
30 #define BOOST_GEOMETRY_DETAIL_SPECIALIZE_POINT_ACCESS(Point, Dim, CoordinateType, Get, Set) \ argument
31 template<> struct access<Point, Dim> \
33 static inline CoordinateType get(Point const& p) { return p. Get; } \
34 static inline void set(Point& p, CoordinateType const& value) { p. Set = value; } \
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/poly2tri/common/
H A Dshapes.h45 struct Point { struct
50 Point() in Point() argument
56 /// The edges this point constitutes an upper ending point
60 Point(double x, double y) : x(x), y(y) {} in Point() argument
62 /// Set this point to all zeros.
69 /// Set this point to some specified coordinates.
76 /// Negate this point.
77 Point operator -() const argument
79 Point v; argument
84 /// Add a point to this point.
[all …]
H A Dshapes.cpp36 Triangle::Triangle(Point& a, Point& b, Point& c) in Triangle()
46 void Triangle::MarkNeighbor(Point* p1, Point* p2, Triangle* t) in MarkNeighbor()
119 Point* Triangle::OppositePoint(Triangle& t, Point& p) in OppositePoint()
121 Point *cw = t.PointCW(p); in OppositePoint()
125 // Legalized triangle by rotating clockwise around point(0)
126 void Triangle::Legalize(Point& point) in Legalize() argument
130 points_[2] = &point; in Legalize()
134 void Triangle::Legalize(Point& opoint, Point& npoint) in Legalize()
153 int Triangle::Index(const Point* p) in Index()
165 int Triangle::EdgeIndex(const Point* p1, const Point* p2) in EdgeIndex()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/arithmetic/
H A Darithmetic.hpp36 template <typename Point>
41 typename coordinate_type<Point>::type
75 inline point_operation(PointSrc const& point) in point_operation()
76 : m_point_src(point) in point_operation()
116 inline point_assignment(PointSrc const& point) in point_assignment()
117 : m_point_src(point) in point_assignment()
132 \brief Adds the same value to each coordinate of a point
135 \tparam Point \tparam_point
136 \param p point
139 template <typename Point>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/distance/
H A Dpoint_to_geometry.hpp76 typename Point,
91 Point, Range, Closure, comparable_strategy
98 Point,
102 static inline return_type apply(Point const& point, Range const& range, in apply() argument
117 Point, in apply()
126 = point_to_point_range::apply(point, in apply()
140 strategy.apply(point, *it_pair.first, *it_pair.second); in apply()
147 typename Point,
156 Strategy, Point, typename point_type<Ring>::type
159 static inline return_type apply(Point const& point, in apply()
[all …]
H A Dbackward_compatibility.hpp48 template<typename Point, typename Segment, typename Strategy>
54 Point,
57 apply(Point const& point, Segment const& segment, Strategy const& ) in apply()
61 Point, in apply()
69 return segment_strategy.apply(point, p[0], p[1]); in apply()
85 // Point-segment version 1, with point-point strategy
86 template <typename Point, typename Segment, typename Strategy>
89 Point, Segment, Strategy,
92 > : detail::distance::point_to_segment<Point, Segment, Strategy>
96 // Point-line version 1, where point-point strategy is specified
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geometry/0.9.3/include/mapbox/geometry/
H A Dpoint_arithmetic.hpp7 point<T> operator+(point<T> const& lhs, point<T> const& rhs) in operator +()
9 return point<T>(lhs.x + rhs.x, lhs.y + rhs.y); in operator +()
13 point<T> operator+(point<T> const& lhs, T const& rhs) in operator +()
15 return point<T>(lhs.x + rhs, lhs.y + rhs); in operator +()
19 point<T> operator-(point<T> const& lhs, point<T> const& rhs) in operator -()
21 return point<T>(lhs.x - rhs.x, lhs.y - rhs.y); in operator -()
25 point<T> operator-(point<T> const& lhs, T const& rhs) in operator -()
27 return point<T>(lhs.x - rhs, lhs.y - rhs); in operator -()
31 point<T> operator*(point<T> const& lhs, point<T> const& rhs) in operator *()
33 return point<T>(lhs.x * rhs.x, lhs.y * rhs.y); in operator *()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/
H A Dpoint_on_border.hpp51 template <typename Point>
52 static inline bool apply(Point& destination, Point const& source) in apply()
59 template<typename Point, std::size_t Dimension, std::size_t DimensionCount>
63 static inline bool apply(Point& p, InputPoint const& p1, InputPoint const& p2) in apply()
65 typename coordinate_type<Point>::type const two = 2; in apply()
68 return midpoint_helper<Point, Dimension + 1, DimensionCount>::apply(p, p1, p2); in apply()
73 template <typename Point, std::size_t DimensionCount>
74 struct midpoint_helper<Point, DimensionCount, DimensionCount>
77 static inline bool apply(Point& , InputPoint const& , InputPoint const& ) in apply()
88 template<typename Point, typename Iterator>
[all …]
H A Dassign_values.hpp71 template <typename Point>
72 static inline void apply(Point& point) in apply()
74 geometry::assign_value(point, 0); in apply()
118 typename Box, typename Point
120 inline void assign_box_2d_corner(Box const& box, Point& point) in assign_box_2d_corner() argument
124 assert_dimension<Point, 2>(); in assign_box_2d_corner()
127 typedef typename coordinate_type<Point>::type coordinate_type; in assign_box_2d_corner()
129 geometry::set<0>(point, boost::numeric_cast<coordinate_type>(get<Corner1, 0>(box))); in assign_box_2d_corner()
130 geometry::set<1>(point, boost::numeric_cast<coordinate_type>(get<Corner2, 1>(box))); in assign_box_2d_corner()
137 typename Geometry, typename Point,
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/poly2tri/sweep/
H A Dsweep.cpp54 Point& point = *tcx.GetPoint(i); in SweepPoints() local
55 Node* node = &PointEvent(tcx, point); in SweepPoints()
56 for (unsigned int i = 0; i < point.edge_list.size(); i++) { in SweepPoints()
57 EdgeEvent(tcx, point.edge_list[i], node); in SweepPoints()
66 Point* p = tcx.front()->head()->next->point; in FinalizationPolygon()
75 Node& Sweep::PointEvent(SweepContext& tcx, Point& point) in PointEvent() argument
77 Node& node = tcx.LocateNode(point); in PointEvent()
78 Node& new_node = NewFrontTriangle(tcx, point, node); in PointEvent()
80 // Only need to check +epsilon since point never have smaller in PointEvent()
82 if (point.x <= node.point->x + EPSILON) { in PointEvent()
[all …]
H A Dsweep.h48 struct Point;
71 * Start sweeping the Y-sorted point set from bottom to top
78 * Find closes node to the left of the new point and
83 * @param point
86 Node& PointEvent(SweepContext& tcx, Point& point);
97 void EdgeEvent(SweepContext& tcx, Point& ep, Point& eq, Triangle* triangle, Point& point);
103 * @param point
107 Node& NewFrontTriangle(SweepContext& tcx, Point& point, Node& node);
139 * @param a - triangle point, opposite d
140 * @param b - triangle point
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/cartesian/
H A Ddistance_pythagoras_point_box.hpp45 template <typename Point, typename Box, typename T>
46 static inline void apply(Point const& point, Box const& box, T& result) in apply()
48 T const p_coord = boost::numeric_cast<T>(geometry::get<I-1>(point)); in apply()
65 compute_pythagoras_point_box<I-1>::apply(point, box, result); in apply()
72 template <typename Point, typename Box, typename T>
73 static inline void apply(Point const&, Box const&, T&) in apply()
87 \brief Strategy to calculate comparable distance between a point
90 \tparam Point \tparam_first_point
99 template <typename Point, typename Box>
104 Point, Box, CalculationType
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/closest_feature/
H A Dpoint_to_range.hpp32 // distance of the point to the range
35 typename Point,
46 static inline void apply(Point const& point, in apply() argument
63 dist_min = strategy.apply(point, *first, *first); in apply()
68 dist_min = strategy.apply(point, *prev, *it); in apply()
74 Distance dist = strategy.apply(point, *prev, *it); in apply()
97 static inline return_type apply(Point const& point, in apply() argument
104 apply(point, first, last, strategy, it_min1, it_min2, dist_min); in apply()
109 static inline return_type apply(Point const& point, in apply() argument
117 Point, in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_ui/
H A Dtst_map_pinch.qml.QTBUG-4797066 property point startPinchPoint1: Qt.point(0,0)
67 property point startPinchPoint2: Qt.point(0,0)
68 property point endPinchPoint1: Qt.point(0,0)
69 property point endPinchPoint2: Qt.point(0,0)
202 Qt.point(0,50), // point1From
203 Qt.point(50,50), // point1To
204 Qt.point(100,50), // point2From
205 Qt.point(50,50), // point2To
286 pinchGenerator.pinch(Qt.point(45,50), Qt.point(0,50),
287 Qt.point(55,50), Qt.point(100,50),
[all …]
H A Dtst_map_item_details.qml343 var point = map.fromCoordinate(extMapPolygon.path[1])
347 mouseClick(map, point.x - 5, point.y)
354 mouseClick(map, point.x - 5, point.y)
377 var point = map.fromCoordinate(extMapPolyline.path[1])
397 //mouseClick(map, point.x - 5, point.y)
469 var point = map.fromCoordinate(extMapRectDateline.topLeft)
470 verify(point.x < map.width / 2.0)
471 point = map.fromCoordinate(extMapRectDateline.bottomRight)
472 verify(point.x > map.width / 2.0)
475 point = map.fromCoordinate(extMapRectDateline.bottomRight)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/within/
H A Dpoint_in_geometry.hpp62 template <typename Point, typename Range, typename Strategy> inline
63 int point_in_range(Point const& point, Range const& range, Strategy const& strategy) in point_in_range() argument
74 if ( ! strategy.apply(point, *previous, *it, state) ) in point_in_range()
83 template <typename Geometry, typename Point, typename Range>
84 inline int point_in_range(Point const& point, Range const& range) in point_in_range() argument
88 Point, Geometry in point_in_range()
91 return point_in_range(point, range, strategy_type()); in point_in_range()
98 // checks the relation between a point P and geometry G
123 template <typename Point, typename Strategy> static inline
124 int apply(Point const& point, Segment const& segment, Strategy const& strategy) in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/geometries/
H A Dbox.hpp39 \details Box is always described by a min_corner() and a max_corner() point. If another
43 \tparam Point point type. The box takes a point type as template parameter.
44 The point type can be any point type.
46 The box can also take a latlong point type as template parameter.
53 template<typename Point>
56 BOOST_CONCEPT_ASSERT( (concepts::Point<Point>) );
81 \brief Constructor taking the minimum corner point and the maximum corner point
83 inline box(Point const& min_corner, Point const& max_corner) in box()
93 inline Point const& min_corner() const in min_corner()
100 inline Point const& max_corner() const in max_corner()
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxwayland/qmlvideofx/shaders/
H A Dpagecurl.fsh55 vec3 hitPoint(float hitAngle, float yc, vec3 point, mat3 rrotation)
58 point.y = hitPoint;
59 return rrotation * point;
71 float distanceToEdge(vec3 point)
73 float dx = abs(point.x > 0.5 ? 1.0 - point.x : point.x);
74 float dy = abs(point.y > 0.5 ? 1.0 - point.y : point.y);
75 if (point.x < 0.0) dx = -point.x;
76 if (point.x > 1.0) dx = point.x - 1.0;
77 if (point.y < 0.0) dy = -point.y;
78 if (point.y > 1.0) dy = point.y - 1.0;
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/policies/
H A Dcompare.hpp31 typename Point,
40 Strategy, Direction, Point, Dimension
43 typedef typename geometry::coordinate_type<Point>::type coordinate_type;
45 static inline bool apply(Point const& left, Point const& right) in apply()
54 Direction, Point, Strategy, in apply()
69 typename Point,
73 struct compare_loop<Direction, Point, Strategy, DimensionCount, DimensionCount>
75 static inline bool apply(Point const&, Point const&) in apply()
84 template <int Direction, typename Point, typename Strategy>
87 inline bool operator()(Point const& left, Point const& right) const in operator ()()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/views/detail/
H A Dtwo_dimensional_view.hpp48 // View that enables to choose two dimensions of a point and see it as
49 // a two-dimensional point
50 template <typename Point, std::size_t Dimension1, std::size_t Dimension2>
51 struct two_dimensional_view<Point, Dimension1, Dimension2, point_tag>
54 (Dimension1 < static_cast<std::size_t>(dimension<Point>::value)),
59 (Dimension2 < static_cast<std::size_t>(dimension<Point>::value)),
63 two_dimensional_view(Point& point) in two_dimensional_view()
64 : m_point(point) in two_dimensional_view()
67 Point& m_point;
80 template <typename Point, std::size_t Dimension1, std::size_t Dimension2>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/util/
H A Dfor_each_coordinate.hpp28 template <typename Point, int Dimension, int DimensionCount, bool IsConst>
35 Point in apply()
36 >::type& point, Op operation) in apply()
38 operation.template apply<Point, Dimension>(point); in apply()
41 Point, in apply()
45 >::apply(point, operation); in apply()
49 template <typename Point, int DimensionCount, bool IsConst>
50 struct coordinates_scanner<Point, DimensionCount, DimensionCount, IsConst>
56 Point in apply()
66 template <typename Point, typename Op>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/agnostic/
H A Dpoint_in_poly_winding.hpp38 template <typename Point,
39 typename CalculationType = typename coordinate_type<Point>::type>
42 typedef typename coordinate_system<Point>::type cs_t;
57 // For floating point coordinates, the <D> coordinate of a point is compared
65 // For the s1 of a segment going NE the real side is RIGHT but the point may
76 // Called when the point is on the same level as one of the segment's points
77 // but the point is not aligned with a vertical segment
86 template <typename Point, typename PointOfSegment>
87 static inline int apply(Point const& point, in apply()
94 if (math::equals(get<1>(point), get<1>(se))) in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/algorithms/
H A Dsegment_intersection.hpp16 //template <typename Indexable, typename Point>
22 // typename coordinate_type<Point>::type
34 template <typename Box, typename Point, size_t I>
38 BOOST_STATIC_ASSERT(0 <= dimension<Point>::value);
40 BOOST_STATIC_ASSERT(I < size_t(dimension<Point>::value));
41 BOOST_STATIC_ASSERT(dimension<Point>::value == dimension<Box>::value);
46 static inline bool apply(Box const& b, Point const& p0, Point const& p1, in apply()
64 template <typename Box, typename Point, size_t CurrentDimension>
69 typedef box_segment_intersection_dim<Box, Point, CurrentDimension - 1> for_dim;
72 static inline bool apply(Box const& b, Point const& p0, Point const& p1, in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/
H A Dpoint.hpp3 #include <mapbox/geometry/point.hpp>
14 struct point;
17 using point_ptr = point<T>*;
20 using const_point_ptr = point<T>* const;
32 struct point { struct
40 point() : ring(nullptr), x(0), y(0), prev(this), next(this) { in point() argument
43 point(T x_, T y_) : ring(nullptr), x(x_), y(y_), next(this), prev(this) { in point() function
46 point(ring_ptr<T> ring_, mapbox::geometry::point<T> const& pt) in point() argument
50 point(ring_ptr<T> ring_, mapbox::geometry::point<T> const& pt, point_ptr<T> before_this_point) in point() function
64 bool operator==(point<T> const& lhs, point<T> const& rhs) { in operator ==()
[all …]

12345678910>>...308