File size: 1,196 Bytes
dc00adb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# MethodWithArgs

Qualified name: `manim.data\_structures.MethodWithArgs`

### *class* MethodWithArgs(method, args, kwargs)

Bases: `object`

Object containing a [`method`](#manim.data_structures.MethodWithArgs.method) which is intended to be called later
with the positional arguments [`args`](#manim.data_structures.MethodWithArgs.args) and the keyword arguments
[`kwargs`](#manim.data_structures.MethodWithArgs.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`](#manim.data_structures.MethodWithArgs.method).

* **Type:**
  Iterable[Any]

#### kwargs

Keyword arguments for [`method`](#manim.data_structures.MethodWithArgs.method).

* **Type:**
  dict[str, Any]

### Methods

### Attributes

| [`method`](#manim.data_structures.MethodWithArgs.method)   |    |
|------------------------------------------------------------|----|
| [`args`](#manim.data_structures.MethodWithArgs.args)       |    |
| [`kwargs`](#manim.data_structures.MethodWithArgs.kwargs)   |    |