| 88 | } |
| 89 | |
| 90 | void CameraFollowMode::cameraPathFrameChanged(int id, int current_camera_frame) { |
| 91 | if(m_followRobotTrajectory) { |
| 92 | m_current_scan = m_start_frame + current_camera_frame; |
| 93 | emit frameChanged(m_current_scan); |
| 94 | } else { |
| 95 | m_current_cam_frame = m_start_frame + current_camera_frame; |
| 96 | emit frameChanged(m_current_cam_frame); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | void CameraFollowMode::clearCameraPath() { |
| 101 | emit deleteCameraPath(CAMERA_PATH_ID); |
nothing calls this directly
no outgoing calls
no test coverage detected