Closed banesullivan closed 5 years ago
Thanks a lot for opening this PR!
Looks like all is working:
import pyvista as pv
from pyvista import examples
pvmesh = examples.download_st_helens().warp_by_scalar()
ugrid = pvmesh.cast_to_unstructured_grid()
import odysis as ody
mesh = ody.Mesh.from_vtk(ugrid)
ody.scene(mesh=mesh)
color = ody.color_mapping()
ody.plot()
That is super cool!
@martinRenou, can you add the "Hacktoberfest" label to this PR? FYI, you should check out Hacktoberfest if you haven't already. You might also want to open issue with feature requests and add that label to try to solicit help from outside
This is ready to go from me. Let me know if you need changes.
Also, PyVista's examples
module is packed with example datasets if you want to use them to show off what this library can do
Thanks again. This is greatly appreciated :)
Wow this is great!
Resolve #24
All PyVista mesh types can be passed to
Mesh.from_vtk
now