option to use PyVista for 3D plotting?
See original GitHub issueI’m thinking about adding changes to discretize
that would leverage PyVista for 3D plotting if it is available. For example, I’m thinking about adding a condition for mesh.plotGrid
that would call .to_vtk()
and set up a PyVista figure rather than a Matplotlib figure:
Here’s a current implementation (from this example):
That same mesh can be plotted with PyVista:
What are folks thoughts on this?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:11 (9 by maintainers)
Top Results From Across the Web
Examples — PyVista 0.37.0 documentation
Extract regions of one mesh using another mesh's surface ... Explore these examples to learn how to leverage our powerful 3D plotting routines...
Read more >Hands-on Guide To PyVista: A Python Package For 3D ...
PyVista (formerly known as 'vtki') is a streamlined interface for the VTK, enabling mesh analysis and plotting 3D figures using Python code.
Read more >Tutorial: PyVista - YouTube
Bane SullivanSlack channel, see softwareunderground.org/slack: t21-tue-pyvistaThe instructions and example code are hosted on GitHub here: ...
Read more >3D Visualization with PyVista — discretize 0.8.2 documentation
To run this example, you will need to install pyvista . ... discretize import pyvista as pv import numpy as np # Set...
Read more >Favourite Tool/Package of 2020 | John P. Morrissey
PyVista. PyVista is a powerful and flexible library for plotting 3D figures using python. It's also based on VTK, but implements a higher...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Well that’s exactly right @RichardScottOZ . My thought was to communicate through subsurface objects.
Might be a good Transform-2021 thing?