Skip to content

Commit

Permalink
enh: Refactoring the viz module to a more modular design.
Browse files Browse the repository at this point in the history
Everything is now based on functions that adhere to functional programming.
We combine these functions to create workflows and then use the sisl.nodes
framework to provide the update functionality.
Plotting backends are now implemented each on a single `Figure` class that
implements generic drawing methods, as well as subplots, animations... functionality.
  • Loading branch information
pfebrer committed Sep 28, 2023
1 parent 51736b4 commit 0dfeb39
Show file tree
Hide file tree
Showing 208 changed files with 51,634 additions and 20,513 deletions.
2 changes: 1 addition & 1 deletion docs/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ All methods and submodules are listed :ref:`here <genindex>` and
default_geom
physics
mixing
viz/index
unit_constant
utilities

Expand All @@ -38,5 +39,4 @@ All methods and submodules are listed :ref:`here <genindex>` and
:caption: Advanced usage

nodes
viz/index

33 changes: 29 additions & 4 deletions docs/api/viz/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,37 @@
Visualization
=============

.. currentmodule:: sisl.viz
.. module:: sisl.viz

Visualizations of `sisl` objects and data.
The visualization module contains tools to plot common visualizations, as well
as to create custom visualizations that support multiple plotting backends
automatically.

Plot classes
-----------------

Plot classes are workflow classes that implement some specific plotting.

.. autosummary::
:toctree: generated/

Plot
BandsPlot
FatbandsPlot
GeometryPlot
SitesPlot
GridPlot
WavefunctionPlot
PdosPlot

Utilities
---------

Utilities to build custom plots

.. autosummary::
:toctree: generated/
:recursive:
:toctree: generated/

get_figure
merge_plots
Figure
Loading

0 comments on commit 0dfeb39

Please sign in to comment.