reverted to earlier version

This commit is contained in:
Ben Hambrecht
2018-05-16 21:17:14 +02:00
parent 1d81e3a3af
commit b2b66947db
23 changed files with 361 additions and 532 deletions

View File

@ -140,13 +140,6 @@ class ApplyPointwiseFunction(ApplyMethod):
)
class ApplyPointwiseFunctionToCenter(ApplyPointwiseFunction):
def __init__(self, function, mobject, **kwargs):
ApplyMethod.__init__(
self, mobject.move_to, function(mobject.get_center()), **kwargs
)
class FadeToColor(ApplyMethod):
def __init__(self, mobject, color, **kwargs):
ApplyMethod.__init__(self, mobject.set_color, color, **kwargs)