@@ -10,6 +10,7 @@ Plotting companion module for [ExtendableGrids.jl](https://github.com/WIAS-PDELi
1010Provides plotting of grids, scalar piecewise linear functions and vectors (2D only) for various plotting backends
1111on simplicial grids in one, two or three space dimensions. The main supported backends
1212are CairoMakie, GLMakie, PythonPlot, PyPlot, and PlutoVista. Plots is only partially supported (1D and 2D rectangular grids).
13+ UnicodePlots for certain 1D and 2D plots is also supported.
1314
1415## Disclaimer
1516The code is rather complex and many codepaths are hard to test. Please be prepared to help
@@ -43,7 +44,7 @@ Plot appearance can be tweaked by a number of
4344[ keyword arguments] ( https://WIAS-PDELib.github.io/GridVisualize.jl/dev/api/#GridVisualize.available_kwargs ) .
4445
4546### Plotters
46- Plotters can be e.g. Plots, PythonPlot, PyPlot, GLMakie, CairoMakie PlutoVista - we pass the module exported
47+ Plotters can be e.g. Plots, PythonPlot, PyPlot, GLMakie, CairoMakie, PlutoVista, UnicodePlots - we pass the module exported
4748by the package. Different plotters can be used at the same time.
4849
4950### Multiple plots in one plotting window
@@ -131,21 +132,21 @@ and all plotting functions will do nothing.
131132- 'p': planned (no schedule though)
132133- 'n': probably not, also in the future
133134
134- | | PyPlot/PythonPlot | Makie | PlutoVista | Plots | VTKView |
135- | ----------------| --------------------| -------| ------------| -------| ---------|
136- | scalarplot, 1D | y | y | y,i | y | y |
137- | vectorplot, 1D | y | y | y | y | y |
138- | gridplot, 1D | y | y | y | y | |
139- | scalarplot, 2D | y | y | y | (y) | y,i |
135+ | | PyPlot/PythonPlot | Makie | PlutoVista | Plots | VTKView | UnicodePlots |
136+ | ----------------| --------------------| -------| ------------| -------| ---------| -------------- |
137+ | scalarplot, 1D | y | y | y,i | y | y | y |
138+ | vectorplot, 1D | y | y | y | y | y | |
139+ | gridplot, 1D | y | y | y | y | | y |
140+ | scalarplot, 2D | y | y | y | (y) | y,i | y |
140141| vectorplot, 2D | y | y | y | y | |
141142| streamplot, 2D | y | y | p | n | |
142- | gridplot, 2D | y | y,i | y | (y) | y,i |
143- | scalarplot, 3D | y | y,i | y,i | n | y,i |
144- | gridplot, 3D | y | y,i | y,i | n | y,i |
145- | vectorplot, 3D | p | p | p | n | |
146- | streamplot, 3D | | p | p | n | |
147- | movie | n | y | n | y | |
148- | triangulateio | y | y | n | n | n |
143+ | gridplot, 2D | y | y,i | y | (y) | y,i | y |
144+ | scalarplot, 3D | y | y,i | y,i | n | y,i | |
145+ | gridplot, 3D | y | y,i | y,i | n | y,i | |
146+ | vectorplot, 3D | p | p | p | n | | |
147+ | streamplot, 3D | | p | p | n | | |
148+ | movie | n | y | n | y | | |
149+ | triangulateio | y | y | n | n | n | |
149150
150151## Sample output
151152
0 commit comments