Back to Manim

Class

docs/source/_templates/autosummary/class.rst

0.20.1712 B
Original Source

{{ name | escape | underline}}

Qualified name: {{ fullname | escape }}

.. currentmodule:: {{ module }}

.. autoclass:: {{ objname }} :show-inheritance: :members: :private-members:

{% block methods %} {%- if methods %} .. rubric:: {{ _('Methods') }}

.. autosummary:: :nosignatures: {% for item in methods if item != 'init' and item not in inherited_members %} ~{{ name }}.{{ item }} {%- endfor %} {%- endif %} {%- endblock %}

{% block attributes %} {%- if attributes %} .. rubric:: {{ _('Attributes') }}

.. autosummary:: {% for item in attributes %} ~{{ name }}.{{ item }} {%- endfor %} {%- endif %} {% endblock %}