| 239 | |
| 240 | |
| 241 | void PathShape::setPosition(F32 pos) |
| 242 | { |
| 243 | mPosition = mClampF(pos,mNodeBase,mNodeBase + mNodeCount - 1); |
| 244 | MatrixF mat; |
| 245 | interpolateMat(mPosition,&mat); |
| 246 | Parent::setTransform(mat); |
| 247 | setMaskBits(PositionMask); |
| 248 | } |
| 249 | |
| 250 | void PathShape::setTarget(F32 pos) |
| 251 | { |
no test coverage detected