Skip to content
Snippets Groups Projects
Commit c313cea5 authored by Florian Zill's avatar Florian Zill
Browse files

[meshplotlib] allow for more vertical plots

parent 60d37b5b
No related branches found
No related tags found
No related merge requests found
......@@ -64,13 +64,13 @@ fig = plot(
# ratio.
# %%
fig = plot(custom_mesh(np.pi, np.pi * 2), "example")
fig = plot(custom_mesh(np.pi, np.pi * 3), "example")
# %% [markdown]
# The same is true here:
# %%
fig = plot(
[custom_mesh(np.pi, np.pi * 2), custom_mesh(np.pi, np.pi * 2)], "example"
[custom_mesh(np.pi, np.pi * 3), custom_mesh(np.pi, np.pi * 3)], "example"
)
# %% [markdown]
......
......@@ -10,7 +10,7 @@ setup_dict = {
"default_cmap": "RdBu_r",
"dpi": 120,
"fig_scale": 1.0,
"min_ax_aspect": 1.0,
"min_ax_aspect": 0.5,
"max_ax_aspect": 2.0,
"invert_colorbar": False,
"layout": "compressed",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment