ipygany
ipygany copied to clipboard
3-D Scientific Visualization in the Jupyter Notebook
Here's what I try to run in jupyterlab: ```python from ipygany import Scene, PolyMesh mesh = PolyMesh.from_vtk('domain.vtk') mesh.default_color = 'gray' scene = Scene([mesh]) scene ``` I get the following message:...
Bumps [tar](https://github.com/npm/node-tar) from 6.1.5 to 6.1.11. Commits e573aee 6.1.11 edb8e9a fix: perf regression on hot string munging path a9d9b05 chore(test): Avoid spurious failures packing node_modules/.cache 24b8bda fix(test): use posix path...
Hi, I am using ipygany together with pyvista in a jupyter notebook. I am mostly working with large point clouds of traffic scenes. When zooming in on certain parts of...
(adapted from the notebook example in this repo): ```python In [2]: mesh2 = TetraMesh.from_vtk('piston.vtu') ... ... iso2 = IsoColor(mesh2, input=('RESU____DEPL', 'DX'), min=-1.3931281e-06, max=1.3929895e-06) ... ... scene2 = Scene([iso2]) ``` ```python...
I'd like to request an easy to use way to utilize the magnitude of multicomponent data in ipygany. Something like this where the `velocity` data has multiple components and `norm`...
Similarly to point data, could you also support cell data? It would be great if when loading a mesh from memory, I could manually pass cell data, i.e. data associated...
Bumps [pygments](https://github.com/pygments/pygments) from 2.6.1 to 2.7.4. Release notes Sourced from pygments's releases. 2.7.4 Updated lexers: Apache configurations: Improve handling of malformed tags (#1656) CSS: Add support for variables (#1633, #1666)...
Bumps [ssri](https://github.com/npm/ssri) from 8.0.0 to 8.0.1. Changelog Sourced from ssri's changelog. 8.0.1 (2021-01-27) Bug Fixes simplify regex for strict mode, add tests (76e2233) Commits 3eec7a3 chore(release): 8.0.1 2083289 chore: update...
Great work with this module! Is there any way of toggling the visibility of a mesh? I'm trying to incorporate this with `ipytree`, but there's no callback or trait that...
Would it be possible to add a "box-lines marker" for hover-points, similar to what plotly has? Useful to see where exactly the mouse is hovering: 