diff --git a/docs/source/api/types.rst b/docs/source/api/types.rst index ce08697e20d327073ed7c2f450989ecce21b7a63..624d956bcf747d7e87a00dcedeeb3b512535479d 100644 --- a/docs/source/api/types.rst +++ b/docs/source/api/types.rst @@ -17,6 +17,10 @@ Basic Functions Data Type Class Hierarchy ------------------------- +.. inheritance-diagram:: pystencils.types.meta.PsType pystencils.types.types + :top-classes: pystencils.types.PsType + :parts: 1 + .. autoclass:: pystencils.types.PsType :members: diff --git a/docs/source/conf.py b/docs/source/conf.py index 45546d9b7faf8f565330bf3e39ed29eeb9498363..4f68a697eaf628e3c83dd844ae2d382c3b9eeb74 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -29,6 +29,7 @@ extensions = [ "sphinx.ext.intersphinx", "sphinx.ext.mathjax", "sphinx.ext.napoleon", + "sphinx.ext.inheritance_diagram", "nbsphinx", "sphinxcontrib.bibtex", "sphinx_autodoc_typehints", @@ -47,6 +48,12 @@ intersphinx_mapping = { "sympy": ("https://docs.sympy.org/latest/", None), } +# -- Options for inheritance diagrams----------------------------------------- + +inheritance_graph_attrs = { + "bgcolor": "white", +} + # -- Options for HTML output ------------------------------------------------- html_theme = "furo"