Home
last modified time | relevance | path

Searched refs:lon2 (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/algorithms/detail/envelope/
H A Dsegment.hpp92 CalculationType& lon2, in swap() argument
95 std::swap(lon1, lon2); in swap()
117 CoordinateType const& lon2) in crosses_antimeridian() argument
124 return math::abs(lon1 - lon2) > constants::half_period(); // > pi in crosses_antimeridian()
131 CalculationType& lon2, in compute_box_corners() argument
138 BOOST_GEOMETRY_ASSERT(lon1 <= lon2); in compute_box_corners()
192 CalculationType& lon2, in special_cases() argument
209 lon2 = 0; in special_cases()
216 lon1 = lon2; in special_cases()
223 lon2 = lon1; in special_cases()
[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 Dsegment_box.hpp57 CT& lon2, in swap()
60 std::swap(lon1, lon2); in swap()
100 CT lon2 = geometry::get_as_radian<0>(p1_normalized); in apply() local
103 if (lon1 > lon2) in apply()
105 swap(lon1, lat1, lon2, lat2); in apply()
112 azimuth_strategy.apply(lon1, lat1, lon2, lat2, alp1); in apply()
118 lon2, lat2, in apply()
178 lon2, lat2, 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.hpp125 T2 const& lon2, in spherical_azimuth() argument
133 CT dlon = lon2 - lon1; in spherical_azimuth()
169 T2 const& lon2, T2 const& lat2) in spherical_azimuth() argument
171 return spherical_azimuth<ReturnType, false>(lon1, lat1, lon2, lat2).azimuth; in spherical_azimuth()
175 inline T spherical_azimuth(T const& lon1, T const& lat1, T const& lon2, T const& lat2) in spherical_azimuth() argument
177 return spherical_azimuth<T, false>(lon1, lat1, lon2, lat2).azimuth; in spherical_azimuth()
H A Dvertex_longitude.hpp288 CT& lon2, in apply() argument
304 return lon2; in apply()
308 if (math::equals(lon1, lon2)) in apply()
312 BOOST_ASSERT(lon1 < lon2); in apply()
316 sin(lon1 - lon2), in apply()
317 cos(lon1 - lon2), in apply()
328 if (std::abs(lon1 - lon2) > pi) in apply()
H A Dsjoberg_intersection.hpp43 CT const& lon2, CT const& lat2, CT const& lon_b2, CT const& lat_b2, in apply()
48 lon2, lat2, lon_b2, lat_b2, in apply()
60 CT const& lon2, CT const& lat2, CT const& lon_b2, CT const& lat_b2, in apply_alt()
65 CT const cos_lon2 = cos(lon2); in apply_alt()
66 CT const sin_lon2 = sin(lon2); in apply_alt()
75 return apply(lon1, lon_a2, lon2, lon_b2, in apply_alt()
83 static inline bool apply(CT const& lon1, CT const& lon_a2, CT const& lon2, CT const& lon_b2, in apply()
98 CT const dlon2 = lon_b2 - lon2; in apply()
127 lon = lon2; in apply()
153 (std::min)(math::longitude_difference<radian>(lon2, lon), in apply()
[all …]
H A Dvincenty_inverse.hpp71 T2 const& lon2, in apply()
77 if (math::equals(lat1, lat2) && math::equals(lon1, lon2)) in apply()
93 CT L = lon2 - lon1; in apply()
211 quantities::apply(lon1, lat1, lon2, lat2, in apply()
H A Dthomas_inverse.hpp61 T2 const& lon2, in apply() argument
69 if ( math::equals(lon1, lon2) && math::equals(lat1, lat2) ) in apply()
97 CT const d_lambda = lon2 - lon1; in apply()
207 quantities::apply(lon1, lat1, lon2, lat2, in apply()
H A Dandoyer_inverse.hpp61 T2 const& lon2, in apply() argument
69 if ( math::equals(lon1, lon2) && math::equals(lat1, lat2) ) in apply()
79 CT const dlon = lon2 - lon1; in apply()
H A Ddifferential_quantities.hpp39 CT const& lon2, CT const& lat2, in apply() argument
44 CT const dlon = lon2 - lon1; in apply()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativecirclemapitem.cpp715 qreal lon2 = QLocationUtils::wrapLong(QLocationUtils::degrees(resultLonRad)); in calculatePeripheralPoints() local
717 path << QGeoCoordinate(lat2, lon2, center.altitude()); in calculatePeripheralPoints()
720 if (lon2 > centerLon) // if point and center are on different hemispheres in calculatePeripheralPoints()
721 lon2 -= 360; in calculatePeripheralPoints()
722 if (lon2 < minLon) { in calculatePeripheralPoints()
723 minLon = lon2; in calculatePeripheralPoints()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/spherical/
H A Ddistance_haversine.hpp87 T2 const& lon2, T2 const& lat2) in calculate() argument
90 + cos(lat1) * cos(lat2) * math::hav(lon2 - lon1); in calculate()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeopolygon.cpp169 qreal lon2 = QLocationUtils::wrapLong(QLocationUtils::degrees(resultLonRad)); in calculatePeripheralPoints() local
171 path << QGeoCoordinate(lat2, lon2, center.altitude()); in calculatePeripheralPoints()