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
|
{{ fullname | escape | underline}}
.. currentmodule:: {{ module }}
.. autoclass:: {{ objname }}
{% block methods %}
{% if methods %}
.. rubric:: {{ _('Methods') }}
.. autosummary::
:toctree:
{% for item in methods %}
{% if not item in skipmethods %}
{% if name == 'Plotter' or item not in inherited_members %}
{{ name }}.{{ item }}
{% endif %}
{% endif %}
{%- endfor %}
{% endif %}
{% endblock %}
{% block attributes %}
{% if attributes %}
.. rubric:: {{ _('Attributes') }}
.. autosummary::
:toctree:
{% for item in attributes %}
{% if name == 'Plotter' or name == 'DataSetMapper' or name == 'ImageData' or item not in inherited_members %}
{% if item.0 != item.upper().0 %}
{{ name }}.{{ item }}
{% endif %}
{% endif %}
{%- endfor %}
{% endif %}
{% endblock %}
|