Alex Kaszynski
Alex Kaszynski
Automatically resizes the pythreejs Renderer. Resolves #362.
Upgrade to threejs [r112](https://github.com/mrdoob/three.js/releases/tag/r112). ### Remaining wrappers - [x] ~PMREMGenerator~ (API changed from method to class, delaying wrapper) - [ ] LightProbe - [ ] LightProbeHelper - [ ] PositionalAudioHelper...
First off, I'd like to thank the developers of this project. I've been able to make great strides plotting within jupyterlab and extending `pyvista` through `pythreejs`. Is there any way...
Looking at `pythreejs`, it seems like it should be possible to add a point cloud. Any hints for getting this added? I'm fine with submitting a PR.
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...
Remove `_ref` after references It's become redundant especially when :ref:`ref_topo_map_example` is better represented as simply :ref:`topo_map_example`. We can create another PR making this consistent. _Originally posted by @akaszynski in https://github.com/pyvista/pyvista/pull/1482#r664083973_
Use pooch
Resolve #210 and #1801 by using [pooch](https://pypi.org/project/pooch/). Just about all of the download logic is now being accomplished by using `pooch`. This PR also: - Simplifies testing of the downloads...
I really don't like this logic... `Plotter` objects ought to be useable across cells. We should consider fixing this in the SG scraper _Originally posted by @banesullivan in https://github.com/pyvista/pyvista/pull/3336#discussion_r976627217_
We should really just make a pytest fixture context that sets `verify_cache_image` as the default `before_close_callback`... to do in a later PR though _Originally posted by @banesullivan in https://github.com/pyvista/pyvista/pull/3248#discussion_r960877967_
The following example causes a segfault on Windows with OpenGL from [install_opengl.ps1](https://github.com/pyvista/gl-ci-helpers/blob/master/appveyor/install_opengl.ps1) from http://qt-project.org/wiki/Cross-compiling-Mesa-for-Windows and ``vtk>=9.1.0`` (including unfortunately `vtk==9.2.0rc2`). ```py import pyvista as pv mesh = pv.Sphere() mesh.plot(scalars=mesh.points[:, 2], show_edges=True)...