Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/spherical/
H A Dazimuth.hpp47 >::type calc_t; in apply() typedef
49 geometry::formula::result_spherical<calc_t> in apply()
50 result = geometry::formula::spherical_azimuth<calc_t, true>( in apply()
51 calc_t(lon1_rad), calc_t(lat1_rad), in apply()
52 calc_t(lon2_rad), calc_t(lat2_rad)); in apply()
66 >::type calc_t; in apply() typedef
68 geometry::formula::result_spherical<calc_t> in apply()
69 result = geometry::formula::spherical_azimuth<calc_t, false>( in apply()
70 calc_t(lon1_rad), calc_t(lat1_rad), in apply()
71 calc_t(lon2_rad), calc_t(lat2_rad)); in apply()
H A Dintersection.hpp293 <Segment1, Segment2, CalculationType>::type calc_t; in apply() typedef
295 calc_t const c0 = 0; in apply()
296 calc_t const c1 = 1; in apply()
298 typedef model::point<calc_t, 3, cs::cartesian> vec3d_t; in apply()
311 calc_t dist_b1_b2 = 0; in apply()
336 calc_t dist_a1_a2 = 0; in apply()
360 calc_t len1 = 0; in apply()
371 calc_t len2 = 0; in apply()
419 calc_t dot_n1n2 = dot_product(plane1.normal, plane2.normal); in apply()
436 return collinear_one_degenerated<Policy, calc_t>(a, true, b1, b2, a1, a2, b1v, b2v, in apply()
[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.hpp144 typedef CalculationType calc_t; typedef
156 calc_t const pi = constants::half_period(); in apply()
157 calc_t const pi2 = pi / calc_t(2); in apply()
159 calc_t const px = get<0>(point); in apply()
160 calc_t const s1x = get<0>(seg1); in apply()
161 calc_t const s2x = get<0>(seg2); in apply()
162 calc_t const py = get<1>(point); in apply()
163 calc_t const s1y = get<1>(seg1); in apply()
164 calc_t const s2y = get<1>(seg2); in apply()
180 calc_t s1x_anti = s1x + constants::half_period(); in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/geographic/
H A Dazimuth.hpp63 >::type calc_t; in apply() typedef
65 …typedef typename FormulaPolicy::template inverse<calc_t, false, true, true, false, false> inverse_… in apply()
67 inverse_result i_res = inverse_type::apply(calc_t(lon1_rad), calc_t(lat1_rad), in apply()
68 calc_t(lon2_rad), calc_t(lat2_rad), in apply()
82 >::type calc_t; in apply() typedef
84 …typedef typename FormulaPolicy::template inverse<calc_t, false, true, false, false, false> inverse… in apply()
86 inverse_result i_res = inverse_type::apply(calc_t(lon1_rad), calc_t(lat1_rad), in apply()
87 calc_t(lon2_rad), calc_t(lat2_rad), in apply()
H A Dside.hpp102 >::type calc_t; in apply() typedef
105 <calc_t, false, true, false, false, false> inverse_formula; in apply()
107 calc_t a1p = azimuth<calc_t, inverse_formula>(p1, p, m_model); in apply()
108 calc_t a12 = azimuth<calc_t, inverse_formula>(p1, p2, m_model); in apply()
H A Dintersection.hpp290 <Segment1, Segment2, CalculationType>::type calc_t; in apply() typedef
292 static const calc_t c0 = 0; in apply()
295 srs::spheroid<calc_t> spheroid = normalized_spheroid<calc_t>(m_spheroid); in apply()
310 calc_t const a1_lon = get_as_radian<0>(a1); in apply()
311 calc_t const a1_lat = get_as_radian<1>(a1); in apply()
312 calc_t const a2_lon = get_as_radian<0>(a2); in apply()
313 calc_t const a2_lat = get_as_radian<1>(a2); in apply()
314 calc_t const b1_lon = get_as_radian<0>(b1); in apply()
315 calc_t const b1_lat = get_as_radian<1>(b1); in apply()
316 calc_t const b2_lon = get_as_radian<0>(b2); in apply()
[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 Ddirection_code.hpp65 >::type calc_t; in apply() typedef
75 calc_t x1 = geometry::get<0>(segment_b) - geometry::get<0>(segment_a); in apply()
76 calc_t y1 = geometry::get<1>(segment_b) - geometry::get<1>(segment_a); in apply()
77 calc_t x2 = geometry::get<0>(segment_b) - geometry::get<0>(p); in apply()
78 calc_t y2 = geometry::get<1>(segment_b) - geometry::get<1>(p); in apply()
80 calc_t ax = (std::min)(math::abs(x1), math::abs(x2)); in apply()
81 calc_t ay = (std::min)(math::abs(y1), math::abs(y2)); in apply()
114 typedef typename geometry::select_coordinate_type <Point1, Point2>::type calc_t; in apply() typedef
117 typedef math::detail::constants_on_spheroid<calc_t, units_t> constants; in apply()
127 calc_t const pi = constants::half_period(); in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/disjoint/
H A Dbox_box.hpp105 >::type calc_t; in apply() typedef
107 typedef math::detail::constants_on_spheroid<calc_t, units_t> constants; in apply()
109 calc_t const b1_min = get<min_corner, 0>(box1); in apply()
110 calc_t const b1_max = get<max_corner, 0>(box1); in apply()
111 calc_t const b2_min = get<min_corner, 0>(box2); in apply()
112 calc_t const b2_max = get<max_corner, 0>(box2); in apply()
115 calc_t const diff1 = b1_max - b1_min; in apply()
116 calc_t const diff2 = b2_max - b2_min; in apply()
122 calc_t const diff_min = math::longitude_distance_unsigned<units_t>(b1_min, b2_min); in apply()
123 calc_t const b2_min_transl = b1_min + diff_min; // always right of b1_min in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/sections/
H A Dsection_functions.hpp59 >::type calc_t; in apply() typedef
62 calc_t const c0 = 0; in apply()
66 calc_t const diff_min = math::longitude_distance_signed in apply()
68 units_t, calc_t in apply()
71 calc_t const diff_min_min = math::longitude_distance_signed in apply()
73 units_t, calc_t in apply()
80 calc_t const diff_max = math::longitude_distance_signed in apply()
82 units_t, calc_t in apply()
85 calc_t const diff_max_max = math::longitude_distance_signed in apply()
87 units_t, calc_t in apply()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/formulas/
H A Dspherical.hpp55 typedef typename coordinate_type<Point3d>::type calc_t; in sph_to_cart3d() typedef
57 calc_t const lon = get_as_radian<0>(point_sph); in sph_to_cart3d()
58 calc_t const lat = get_as_radian<1>(point_sph); in sph_to_cart3d()
59 calc_t x, y, z; in sph_to_cart3d()
81 typedef typename coordinate_type<Point3d>::type calc_t; in cart3d_to_sph() typedef
83 calc_t const x = get<0>(point_3d); in cart3d_to_sph()
84 calc_t const y = get<1>(point_3d); in cart3d_to_sph()
85 calc_t const z = get<2>(point_3d); in cart3d_to_sph()
86 calc_t lonr, latr; in cart3d_to_sph()
114 typedef typename select_coordinate_type<Point3d1, Point3d2>::type calc_t; in sph_side_value() typedef
[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 Dpoint_in_box.hpp103 >::type calc_t; in apply() typedef
105 typedef math::detail::constants_on_spheroid<calc_t, units_t> constants; in apply()
113 calc_t const diff_ing = max_value - min_value; in apply()
122calc_t const diff_min = math::longitude_distance_unsigned<units_t, calc_t>(min_value, value); in apply()
124 return DiffCheck::template apply<calc_t>(diff_min, min_value, max_value); in apply()
H A Dbox_in_box.hpp111 >::type calc_t; in apply() typedef
113 typedef math::detail::constants_on_spheroid<calc_t, units_t> constants; in apply()
121 calc_t const diff_ed = bed_max - bed_min; in apply()
122 calc_t const diff_ing = bing_max - bing_min; in apply()
138 calc_t const diff_min = math::longitude_distance_unsigned<units_t>(bing_min, bed_min); in apply()