Fix mistake

This commit is contained in:
friedkeenan 2021-02-10 15:38:31 -06:00
parent 2d83cccc0a
commit cbe24daa98
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ InteractiveDevlopment
self.wait()
self.play(circle.animate.stretch(4, 0))
self.play(Rotate(circle, 90 * DEGREES))
self.play(circle.animate.shift(2 * RIGHT, circle.scale, 0.25))
self.play(circle.animate.shift(2 * RIGHT), circle.animate.scale(0.25))
text = Text("""
In general, using the interactive shell

View file

@ -604,7 +604,7 @@ class InteractiveDevlopment(Scene):
self.wait()
self.play(circle.animate.stretch(4, 0))
self.play(Rotate(circle, 90 * DEGREES))
self.play(circle.animate.shift(2 * RIGHT, circle.scale, 0.25))
self.play(circle.animate.shift(2 * RIGHT), circle.animate.scale(0.25))
text = Text("""
In general, using the interactive shell