| 2380 | } |
| 2381 | |
| 2382 | void Scene::addViewpoint() |
| 2383 | { |
| 2384 | auto camera = getCamera(); |
| 2385 | addViewpoint(camera->getPosition(), camera->getTarget(), camera->getUpVector(), mSelectedCamera); |
| 2386 | } |
| 2387 | |
| 2388 | void Scene::addViewpoint(const float3& position, const float3& target, const float3& up, uint32_t cameraIndex) |
| 2389 | { |
nothing calls this directly
no test coverage detected