| 61 | } |
| 62 | |
| 63 | float DrawItemsController::GetInterpolatedFov(float alpha) const |
| 64 | { |
| 65 | if (std::abs(_prevFov - _fov) < EPSILON) |
| 66 | return _fov; |
| 67 | |
| 68 | return Lerp(_prevFov, _fov, alpha); |
| 69 | } |
| 70 | |
| 71 | Vector4 DrawItemsController::GetAmbientLight() const |
| 72 | { |
no test coverage detected