| 28 | } |
| 29 | |
| 30 | void Camera::SetPostProjectionMatrix(Matrix4x4<float> const& postProjMatrix) |
| 31 | { |
| 32 | mPostProjectionMatrix = postProjMatrix; |
| 33 | mPostProjectionIsIdentity = (mPostProjectionMatrix == Matrix4x4<float>::Identity()); |
| 34 | UpdatePVMatrix(); |
| 35 | } |
| 36 | |
| 37 | bool Camera::GetPickLine(int32_t viewX, int32_t viewY, int32_t viewW, int32_t viewH, int32_t x, int32_t y, |
| 38 | Vector4<float>& origin, Vector4<float>& direction) const |
no outgoing calls
no test coverage detected