From 57b7af3bf1402bc0b682e93eecefc5ec159f2d0b Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 2 May 2022 11:13:18 -0700 Subject: [PATCH] Remove old-style method building from ExampleScenes --- example_scenes.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/example_scenes.py b/example_scenes.py index 6806147f..a871915f 100644 --- a/example_scenes.py +++ b/example_scenes.py @@ -77,10 +77,6 @@ class AnimatingMethods(Scene): # ".animate" syntax: self.play(grid.animate.shift(LEFT)) - # Alternatively, you can use the older syntax by passing the - # method and then the arguments to the scene's "play" function: - self.play(grid.shift, LEFT) - # Both of those will interpolate between the mobject's initial # state and whatever happens when you apply that method. # For this example, calling grid.shift(LEFT) would shift the