Makie plotting #313
koehlerson
started this conversation in
Ideas
Replies: 2 comments 7 replies
-
I think this would be a very nice addition! Adding some code snippets in the documentation would probably be the quickest solution and from my perspective will do for now. If we see that it starts being used by several people, then maybe it is better to add recipes. In this way, we don't need to make a decision, at the moment, if we want to add Makie as a dependency. What about some of the other plotting libraries? I like plotly myself, can this be written so it works with something generic like Plots.jl? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey,
I started to get into Makie plotting for our adaptive mesh student project and I think it would be nice to let user plot JuAFEM solutions in Makie. Often, when you start with computational problems you only need a rough feedback if things work as they should, i.e. no intense post processing. Nice side effect, you could also plot in notebooks with WGLMakie.
We could either provide a few recipes or directly dispatch
to_mesh
as in JuliaPlots/Plots.jl#392 (comment) onGrid
andAbstractGrid
, respectively. It works quite well for me.This should work for 3D problems as well (see http://juliaplots.org/MakieReferenceImages/gallery//fem_mesh_3d/index.html).
Edit: I should mention that the plot windows are responsive to moving, zooming and in 3D rotating
Another Edit: My question to you guys is essentially: do you prefer a page at the docs, where we list some functions to convert stuff or do we directly incorporate plot recipes in the repo just as in: https://makie.juliaplots.org/dev/recipes.html. The latter would imply a Makie dependency.
Beta Was this translation helpful? Give feedback.
All reactions