Cleaned up duplicate entry for MoveAlongPath in simple_animations

This commit is contained in:
Sridhar Ramesh
2018-01-10 13:08:01 -08:00
parent 48503fc5af
commit 685750486a

View File

@ -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,