File tree Expand file tree Collapse file tree 4 files changed +113
-5
lines changed Expand file tree Collapse file tree 4 files changed +113
-5
lines changed Original file line number Diff line number Diff line change
1
+ {{ fullname | escape | underline }}
2
+
3
+ .. currentmodule :: {{ module }}
4
+
5
+ .. autoclass :: {{ objname }}
6
+ :no-members:
7
+ :show-inheritance:
8
+
9
+ {% if '__init__' in methods %}
10
+ {% set caught_result = methods.remove('__init__') %}
11
+ {% endif %}
12
+
13
+ {% block methods %}
14
+ {% if methods %}
15
+
16
+ .. rubric :: Methods
17
+
18
+ .. autosummary ::
19
+ :template: autosummary.rst
20
+ :toctree:
21
+ :nosignatures:
22
+ {% for item in methods %}
23
+ ~{{ name }}.{{ item }}
24
+ {% endfor %}
25
+
26
+ {% endif %}
27
+ {% endblock %}
Original file line number Diff line number Diff line change
1
+ .. contents :: Table of Contents
2
+ :depth: 2
3
+ :local:
4
+ :backlinks: entry
5
+ :class: multicol-toc
6
+
7
+ {{ fullname | escape | underline }}
8
+
9
+ .. currentmodule :: {{ module }}
10
+
11
+ .. autoclass :: {{ objname }}
12
+ :no-members:
13
+ :show-inheritance:
14
+
15
+ {% if '__init__' in methods %}
16
+ {% set caught_result = methods.remove('__init__') %}
17
+ {% endif %}
18
+
19
+ {% block methods %}
20
+ {% if methods %}
21
+
22
+ Methods
23
+ ^^^^^^^
24
+
25
+ .. autosummary ::
26
+ :nosignatures:
27
+ {% for item in methods %}
28
+ ~{{ name }}.{{ item }}
29
+ {% endfor %}
30
+
31
+ {% endif %}
32
+ {% endblock %}
33
+
34
+ Documentation
35
+ =============
36
+
37
+ .. autoclass :: {{ objname }}
38
+ :members:
39
+ :undoc-members:
40
+ :inherited-members:
41
+ :show-inheritance:
42
+
43
+ Examples
44
+ ========
45
+
46
+ .. include :: {{module}}.{{name}}.examples
47
+ {% block examples %}
48
+ {% if methods %}
49
+ {% for item in methods %}
50
+ .. include :: {{module}}.{{name}}.{{item}}.examples
51
+ .. raw :: html
52
+
53
+ <div class =" clearer" ></div >
54
+ {% endfor %}
55
+ {% endif %}
56
+ {% endblock %}
57
+
Original file line number Diff line number Diff line change @@ -9,8 +9,32 @@ collections
9
9
:mod: `matplotlib.collections `
10
10
=============================
11
11
12
+ .. currentmodule :: matplotlib.collections
13
+
12
14
.. automodule :: matplotlib.collections
13
- :members:
14
- :undoc-members:
15
- :show-inheritance:
16
- :inherited-members:
15
+ :no-members:
16
+
17
+ Classes
18
+ -------
19
+
20
+ .. autosummary ::
21
+ :toctree: _as_gen/
22
+ :template: autoclass_onefile.rst
23
+ :nosignatures:
24
+
25
+ AsteriskPolygonCollection
26
+ BrokenBarHCollection
27
+ CircleCollection
28
+ Collection
29
+ EllipseCollection
30
+ EventCollection
31
+ LineCollection
32
+ PatchCollection
33
+ PathCollection
34
+ PolyCollection
35
+ QuadMesh
36
+ RegularPolyCollection
37
+ StarPolygonCollection
38
+ TriMesh
39
+
40
+
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Classes
17
17
18
18
.. autosummary ::
19
19
:toctree: _as_gen/
20
- :template: autosummary .rst
20
+ :template: autoclass .rst
21
21
:nosignatures:
22
22
23
23
AxesStack
You can’t perform that action at this time.
0 commit comments