* Sets a leftwards rotation speed and starts the timer. */
| 602 | * Sets a leftwards rotation speed and starts the timer. |
| 603 | */ |
| 604 | void Globe::rotateLeft() |
| 605 | { |
| 606 | _rotLon = -ROTATE_LONGITUDE; |
| 607 | if (!_rotTimer->isRunning()) _rotTimer->start(); |
| 608 | } |
| 609 | |
| 610 | /** |
| 611 | * Sets a rightwards rotation speed and starts the timer. |
no test coverage detected