mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
Fix mistake
This commit is contained in:
parent
2d83cccc0a
commit
cbe24daa98
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue