| 1 | #include "FlyCamera.h" |
| 2 | |
| 3 | FlyCamera::FlyCamera(const glm::mat4& viewMatrix, const glm::mat4& projectionMatrix) |
| 4 | { |
| 5 | InitializeFromMatrices(viewMatrix, projectionMatrix); |
| 6 | } |
| 7 | |
| 8 | void FlyCamera::ProcessMouseMovement(float deltaX, float deltaY, bool constrainPitch) |
| 9 | { |
nothing calls this directly
no outgoing calls
no test coverage detected