From 685750486a216b467913d31b07b26885171f24e6 Mon Sep 17 00:00:00 2001 From: Sridhar Ramesh Date: Wed, 10 Jan 2018 13:08:01 -0800 Subject: [PATCH] Cleaned up duplicate entry for MoveAlongPath in simple_animations --- animation/simple_animations.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/animation/simple_animations.py b/animation/simple_animations.py index a3b6a956..0faf71e8 100644 --- a/animation/simple_animations.py +++ b/animation/simple_animations.py @@ -150,17 +150,6 @@ class ShowCreationThenDestruction(ShowPassingFlash): "run_time" : 1, } -class MoveAlongPath(Animation): - def __init__(self, mobject, vmobject, **kwargs): - digest_config(self, kwargs, locals()) - Animation.__init__(self, mobject, **kwargs) - - def update_mobject(self, alpha): - self.mobject.shift( - self.vmobject.point_from_proportion(alpha) - \ - self.mobject.get_center() - ) - class Homotopy(Animation): CONFIG = { "run_time" : 3,