(self, width)
| 96 | return self.currentTime() / (1000.0 / self._speed) |
| 97 | |
| 98 | def progressStep(self, width): |
| 99 | step = self.animationStep() |
| 100 | progress = (step * width / self._speed) % width |
| 101 | if ((step * width / self._speed) % (2 * width)) >= width: |
| 102 | progress = width - progress |
| 103 | return progress |
| 104 | |
| 105 | def speed(self): |
| 106 | return self._speed |
nothing calls this directly
no test coverage detected