| 108 | }; |
| 109 | |
| 110 | void |
| 111 | keyboard_callback (const pcl::visualization::KeyboardEvent& event, void*) |
| 112 | { |
| 113 | /// If SPACE is pressed, trigger new cloud callback (only works if framerate is set to 0) |
| 114 | if (event.getKeyCode() == ' ' && grabber) |
| 115 | grabber->trigger (); |
| 116 | } |
| 117 | |
| 118 | void |
| 119 | mouse_callback (const pcl::visualization::MouseEvent& mouse_event, void* cookie) |
nothing calls this directly
no test coverage detected