| 46 | class ProjectionDemo { |
| 47 | public: |
| 48 | ProjectionDemo(double zNear, double zFar) |
| 49 | : ProjectionDemo( |
| 50 | zNear, zFar, |
| 51 | computeSymmetricFOVRect(50. * degrees, 40. * degrees, zNear)) {} |
| 52 | ProjectionDemo(double zNear, double zFar, osvr::util::Rectd &&inputRect) |
| 53 | : near(zNear), far(zFar), rect(std::move(inputRect)) { |
| 54 | xBounds.assign({-1, 1}); |
nothing calls this directly
no test coverage detected