Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/conversion/
H A Dcustom_geometry_source_options.hpp67 const auto clipValue = objectMember(value, "clip"); in operator ()() local
68 if (clipValue) { in operator ()()
69 if (toBool(*clipValue)) { in operator ()()
70 options.tileOptions.clip = static_cast<double>(*toBool(*clipValue)); in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqlocationutils_p.h109 inline static double clipLat(double lat, double clipValue = 90.0) {
110 if (lat > clipValue)
111 lat = clipValue;
112 else if (lat < -clipValue)
113 lat = -clipValue;