mirror of
https://github.com/3b1b/manim.git
synced 2025-07-30 13:34:19 +08:00
Editing ApplyMethod so that if the last arg is a dict, it's treated as kwargs for the method
This commit is contained in:
@ -143,7 +143,13 @@ class ApplyMethod(Transform):
|
||||
"the method you want to animate"
|
||||
)
|
||||
assert(isinstance(method.im_self, Mobject))
|
||||
method_kwargs = kwargs.get("method_kwargs", {})
|
||||
args = list(args) #So that args.pop() works
|
||||
if "method_kwargs" in kwargs:
|
||||
method_kwargs = kwargs["method_kwargs"]
|
||||
elif isinstance(args[-1], dict):
|
||||
method_kwargs = args.pop()
|
||||
else:
|
||||
method_kwargs = {}
|
||||
target = method.im_self.copy()
|
||||
method.im_func(target, *args, **method_kwargs)
|
||||
Transform.__init__(self, method.im_self, target, **kwargs)
|
||||
|
Reference in New Issue
Block a user