| 392 | } |
| 393 | |
| 394 | void PathCamera::popFront() |
| 395 | { |
| 396 | if (mNodeCount < 2) |
| 397 | return; |
| 398 | |
| 399 | // Remove the first node. Node base and position are unaffected. |
| 400 | mNodeCount--; |
| 401 | delete mSpline.remove(mSpline.getKnot(0)); |
| 402 | |
| 403 | if( mPosition > 0 ) |
| 404 | mPosition --; |
| 405 | } |
| 406 | |
| 407 | |
| 408 | //---------------------------------------------------------------------------- |
no test coverage detected