Skip to content

Commit

Permalink
Remove debug output (#2704)
Browse files Browse the repository at this point in the history
  • Loading branch information
RealDeuce authored Apr 14, 2022
1 parent b1f46a6 commit 72112e8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/slic3r/GUI/Mouse3DController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1094,12 +1094,10 @@ void Mouse3DController::collect_input()
case SPNAV_EVENT_MOTION: {
Vec3d translation(-convert_spnav_input(ev.motion.x), convert_spnav_input(ev.motion.y), -convert_spnav_input(ev.motion.z));
if (!translation.isApprox(Vec3d::Zero())) {
std::cout << "Motion: X: " << ev.motion.x << ", Y: " << ev.motion.y << ", Z: " << ev.motion.z << std::endl;
m_state.append_translation(translation, m_params.input_queue_max_size);
}
Vec3f rotation(convert_spnav_input(ev.motion.rx), convert_spnav_input(ev.motion.ry), -convert_spnav_input(ev.motion.rz));
if (!rotation.isApprox(Vec3f::Zero())) {
std::cout << "Motion: rX: " << ev.motion.rx << ", rY: " << ev.motion.ry << ", rZ: " << ev.motion.rz << std::endl;
m_state.append_rotation(rotation, m_params.input_queue_max_size);
}
break;
Expand Down

0 comments on commit 72112e8

Please sign in to comment.