| 113 | } |
| 114 | |
| 115 | void handleLoadCamera(vtkObject* caller, unsigned long eid, void* clientdata, void* /* calldata */) |
| 116 | { |
| 117 | if (eid == vtkCommand::LeftButtonReleaseEvent) |
| 118 | { |
| 119 | vtkOpenVRDefaultOverlay* ovl = static_cast<vtkOpenVRDefaultOverlay*>(caller); |
| 120 | // ovl->ReadCameraPoses(); |
| 121 | int option = *(reinterpret_cast<int*>(&clientdata)); |
| 122 | ovl->LoadCameraPose(option); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | void handleShowFloor(vtkObject* caller, unsigned long eid, void* clientdata, void* calldata) |
| 127 | { |
nothing calls this directly
no test coverage detected