| 158 | } |
| 159 | |
| 160 | vtkVRModel* vtkVRRenderWindow::GetModelForDeviceHandle(uint32_t handle) |
| 161 | { |
| 162 | auto found = this->DeviceHandleToDeviceDataMap.find(handle); |
| 163 | if (found == this->DeviceHandleToDeviceDataMap.end()) |
| 164 | { |
| 165 | return nullptr; |
| 166 | } |
| 167 | return found->second.Model; |
| 168 | } |
| 169 | |
| 170 | vtkMatrix4x4* vtkVRRenderWindow::GetDeviceToPhysicalMatrixForDevice(vtkEventDataDevice idx) |
| 171 | { |
no test coverage detected