Home
last modified time | relevance | path

Searched refs:getPitch (Results 1 – 11 of 11) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dtransform_state.cpp40 const double groundAngle = M_PI / 2.0 + getPitch(); in getProjMatrix()
45 …const double furthestDistance = std::cos(M_PI / 2 - getPitch()) * topHalfSurfaceDistance + getCame… in getProjMatrix()
58 case NO::Rightwards: matrix::rotate_y(projMatrix, projMatrix, getPitch()); break; in getProjMatrix()
59 case NO::Downwards: matrix::rotate_x(projMatrix, projMatrix, -getPitch()); break; in getProjMatrix()
60 case NO::Leftwards: matrix::rotate_y(projMatrix, projMatrix, -getPitch()); break; in getProjMatrix()
61 default: matrix::rotate_x(projMatrix, projMatrix, getPitch()); break; in getProjMatrix()
239 float TransformState::getPitch() const { in getPitch() function in mbgl::TransformState
H A Dmap.cpp448 options.pitch = transform.getPitch(); in cameraForLatLngs()
514 if (getPitch() < minPitch) { in setMinPitch()
525 if (getPitch() > maxPitch) { in setMaxPitch()
593 double Map::getPitch() const { in getPitch() function in mbgl::Map
594 return impl->transform.getPitch() * util::RAD2DEG; in getPitch()
H A Dtransform.cpp72 camera.pitch = getPitch(); in getCameraOptions()
95 double pitch = camera.pitch.value_or(getPitch()); in easeTo()
168 double pitch = camera.pitch.value_or(getPitch()); in flyTo()
494 double Transform::getPitch() const { in getPitch() function in mbgl::Transform
H A Dtransform_state.hpp69 float getPitch() const;
H A Dtransform.hpp114 double getPitch() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dsymbol_program.cpp95 uniforms::u_pitch::Value{ state.getPitch() }, in makeValues()
138 ? std::cos(state.getPitch()) * state.getCameraToCenterDistance() in uniformValues()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_custom_layer.cpp74 parameters.pitch = state.getPitch(); in render()
H A Drender_symbol_layer.cpp152 …onTransformed = values.rotationAlignment == AlignmentType::Map || parameters.state.getPitch() != 0; in render()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/map/
H A Dmap.hpp116 double getPitch() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dcollision_index.cpp35 , pitchFactor(std::cos(transformState.getPitch()) * transformState.getCameraToCenterDistance()) in CollisionIndex()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dqmapboxgl.cpp857 return d_ptr->mapObj->getPitch(); in pitch()