| 189 | } |
| 190 | |
| 191 | void PathShape::interpolateMat(F32 pos,MatrixF* mat) |
| 192 | { |
| 193 | CameraSpline::Knot knot; |
| 194 | mSpline.value(pos - mNodeBase,&knot); |
| 195 | knot.mRotation.setMatrix(mat); |
| 196 | mat->setPosition(knot.mPosition); |
| 197 | } |
| 198 | |
| 199 | void PathShape::advancePosition(S32 ms) |
| 200 | { |
nothing calls this directly
no test coverage detected