Set the frame duration for animated gifs to a number of seconds per frame.
(self, secondsPerFrame)
| 471 | # https://svgwrite.readthedocs.io/en/latest/classes/animate.html |
| 472 | |
| 473 | def frameDuration(self, secondsPerFrame): |
| 474 | """Set the frame duration for animated gifs to a number of seconds per |
| 475 | frame.""" |
| 476 | self._frameDuration = secondsPerFrame |
| 477 | |
| 478 | # Paths. |
| 479 |