z-agent / papers-context /agent_workspace /manim_docs /reference /manim.data_structures.MethodWithArgs.md
A newer version of the Gradio SDK is available: 6.20.0
MethodWithArgs
Qualified name: manim.data\_structures.MethodWithArgs
class MethodWithArgs(method, args, kwargs)
Bases: object
Object containing a method which is intended to be called later
with the positional arguments args and the keyword arguments
kwargs.
- Parameters:
- method (MethodType)
- args (Iterable *[*Any ])
- kwargs (dict *[*str , Any ])
method
A callable representing a method of some class.
- Type: MethodType
args
Positional arguments for method.
- Type: Iterable[Any]
kwargs
Keyword arguments for method.
- Type: dict[str, Any]