| 236 | } |
| 237 | |
| 238 | void PathCamera::interpolateMat(F32 pos,MatrixF* mat) |
| 239 | { |
| 240 | CameraSpline::Knot knot; |
| 241 | mSpline.value(pos - mNodeBase,&knot); |
| 242 | knot.mRotation.setMatrix(mat); |
| 243 | mat->setPosition(knot.mPosition); |
| 244 | } |
| 245 | |
| 246 | void PathCamera::advancePosition(S32 ms) |
| 247 | { |
nothing calls this directly
no test coverage detected