Skip to content

Commit 1d03a8f

Browse files
committed
transforms api changes
1 parent 2afeec7 commit 1d03a8f

File tree

2 files changed

+74
-12
lines changed

2 files changed

+74
-12
lines changed

doc/_templates/autoclass.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{{ fullname | escape | underline }}
2+
3+
.. currentmodule:: {{ module }}
4+
5+
.. autoclass:: {{ fullname }}
6+
:no-members:
7+
:no-inherited-members:
8+
:show-inheritance:
9+
10+
{% block methods %}
11+
{% if methods %}
12+
13+
.. rubric:: Methods
14+
15+
.. autosummary::
16+
:template: autosummary.rst
17+
:toctree:
18+
:nosignatures:
19+
{% for item in methods %}{% if item not in ['__init__'] %}
20+
{{ name }}.{{ item }}{% endif %}{% endfor %}
21+
{% endif %}
22+
{% endblock %}
23+

doc/api/transformations.rst

Lines changed: 51 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,59 @@
1-
***************
2-
transformations
3-
***************
4-
1+
**********
2+
transforms
3+
**********
54
.. inheritance-diagram:: matplotlib.transforms matplotlib.path
65
:parts: 1
76

87
:mod:`matplotlib.transforms`
98
=============================
109

10+
.. currentmodule:: matplotlib.transforms
11+
1112
.. automodule:: matplotlib.transforms
12-
:members: TransformNode, BboxBase, Bbox, TransformedBbox, Transform,
13-
TransformWrapper, AffineBase, Affine2DBase, Affine2D, IdentityTransform,
14-
BlendedGenericTransform, BlendedAffine2D, blended_transform_factory,
15-
CompositeGenericTransform, CompositeAffine2D,
16-
composite_transform_factory, BboxTransform, BboxTransformTo,
17-
BboxTransformFrom, ScaledTranslation, TransformedPath, nonsingular,
18-
interval_contains, interval_contains_open
19-
:show-inheritance:
13+
:no-members:
14+
15+
Classes
16+
-------
17+
18+
.. autosummary::
19+
:toctree: _as_gen/
20+
:template: autoclass.rst
21+
:nosignatures:
22+
23+
TransformNode
24+
BboxBase
25+
Bbox
26+
TransformedBbox
27+
LockableBbox
28+
Transform
29+
TransformWrapper
30+
AffineBase
31+
Affine2DBase
32+
Affine2D
33+
IdentityTransform
34+
BlendedGenericTransform
35+
BlendedAffine2D
36+
CompositeGenericTransform
37+
CompositeAffine2D
38+
BboxTransform
39+
BboxTransformTo
40+
BboxTransformToMaxOnly
41+
BboxTransformFrom
42+
ScaledTranslation
43+
TransformedPath
44+
TransformedPatchPath
45+
46+
Functions
47+
---------
48+
49+
.. autosummary::
50+
:toctree: _as_gen/
51+
:template: autosummary.rst
52+
:nosignatures:
2053

54+
blended_transform_factory
55+
composite_transform_factory
56+
nonsingular
57+
interval_contains
58+
interval_contains_open
59+
offset_copy

0 commit comments

Comments
 (0)