fix(convert): use hash to restrict the length of new filenames (#124)

Closes #123
This commit is contained in:
Jérome Eertmans
2023-02-08 11:00:53 +01:00
committed by GitHub
parent b06250056d
commit 71564a4c2e
2 changed files with 27 additions and 1 deletions

View File

@ -32,6 +32,24 @@ class BasicExample(Slide):
self.pause() # Waits user to press continue to go to the next slide
class TestFileTooLong(Slide):
"""This is used to check against solution for issue #123."""
def construct(self):
import random
circle = Circle(radius=3, color=BLUE)
dot = Dot()
self.play(GrowFromCenter(circle), run_time=0.1)
for _ in range(30):
direction = (random.random() - 0.5) * LEFT + (random.random() - 0.5) * UP
self.play(dot.animate.move_to(direction), run_time=0.1)
self.play(dot.animate.move_to(ORIGIN), run_time=0.1)
self.pause()
class ConvertExample(Slide):
"""WARNING: this example does not seem to work with ManimGL."""