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