| 34 | #include <string> |
| 35 | |
| 36 | void printDirectionReport(const OSVR_DirectionReport *report) { |
| 37 | |
| 38 | std::cout << report->direction.data[0] << "; " << report->direction.data[1] |
| 39 | << "; " << report->direction.data[2] << "\t" << std::endl; |
| 40 | } |
| 41 | |
| 42 | void directionCallback(void * /*userdata*/, |
| 43 | const OSVR_TimeValue * /*timestamp*/, |