From 5337dc5ee4e1165f9783d75d2ddd577ea040840f Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Thu, 28 Mar 2019 16:19:25 -0700 Subject: [PATCH] Fixed name conflict for AnimatedBoundary --- manimlib/mobject/changing.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/manimlib/mobject/changing.py b/manimlib/mobject/changing.py index 9387ebd1..0b58c280 100644 --- a/manimlib/mobject/changing.py +++ b/manimlib/mobject/changing.py @@ -22,9 +22,11 @@ class AnimatedBoundary(VGroup): ] self.add(*self.boundary_copies) self.total_time = 0 - self.add_updater(lambda m, dt: self.update(dt)) + self.add_updater( + lambda m, dt: self.update_boundary_copies(dt) + ) - def update(self, dt): + def update_boundary_copies(self, dt): # Not actual time, but something which passes at # an altered rate to make the implementation below # cleaner