| 201 | } |
| 202 | |
| 203 | void iCameraUpdatePos(RwCamera* cam, xMat4x3* pos) |
| 204 | { |
| 205 | RwFrame* f; |
| 206 | RwMatrix* m; |
| 207 | |
| 208 | f = RwCameraGetFrame(cam); |
| 209 | m = RwFrameGetMatrix(f); |
| 210 | |
| 211 | xMat4x3Copy((xMat4x3*)m, pos); |
| 212 | |
| 213 | m = RwFrameGetLTM(f); |
| 214 | |
| 215 | xMat4x3Copy((xMat4x3*)m, pos); |
| 216 | |
| 217 | RwFrameOrthoNormalize(f); |
| 218 | RwFrameUpdateObjects(f); |
| 219 | } |
| 220 | |
| 221 | void iCameraSetFOV(RwCamera* cam, F32 fov) |
| 222 | { |
no test coverage detected