Given timestamp start, return number of ms since that time.
(self, start_time: float)
| 325 | return self.time() - start_time |
| 326 | |
| 327 | def ms_since(self, start_time: float) -> float: |
| 328 | """Given timestamp start, return number of ms since that time.""" |
| 329 | return self.secs_to_ms(self.secs_since(start_time)) |
| 330 | |
| 331 | def secs_to_ms(self, timestamp: float) -> float: |
| 332 | """Convert seconds to milliseconds.""" |