From cbe24daa98278224fe50b8f3f2e4a4fe19a96f83 Mon Sep 17 00:00:00 2001 From: friedkeenan Date: Wed, 10 Feb 2021 15:38:31 -0600 Subject: [PATCH] Fix mistake --- docs/source/getting_started/example_scenes.rst | 2 +- example_scenes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/getting_started/example_scenes.rst b/docs/source/getting_started/example_scenes.rst index 20fb9913..39a37c7e 100644 --- a/docs/source/getting_started/example_scenes.rst +++ b/docs/source/getting_started/example_scenes.rst @@ -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 diff --git a/example_scenes.py b/example_scenes.py index 331c96e6..84307d75 100644 --- a/example_scenes.py +++ b/example_scenes.py @@ -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