MatthewFlamm
MatthewFlamm
Thanks for the report. The machinery for setting an interactor style is currently convoluted and makes it brittle to what you are trying to do. There is at least one...
@skyui1997 are you able to test whether the changes in #7497 fix your problem?
In testing #7497, it does not fix this issue. The changes however reveal that the interactor is being reset to the pyvista customization of `vtkInteractorStyleTrackballCamera`. This is the default in...
See https://discourse.vtk.org/t/why-single-click-works-but-double-click-does-not/3599/3
As you have discussed, nonconvex cells are have hit or miss support for various operations including rendering. See https://public.kitware.com/pipermail/vtkusers/2014-February/083146.html as another report.
> Not sure how this case should be handled in `pyvista` or whether it should. I feel fairly strongly that we should not be changing cell types unless it is...
There is likely some vtk issue with convex point set cell type here. Probably related to general triangulation issues in vtk. See https://github.com/pyvista/pyvista/issues/6254. The only other issue reported here is...
I think this _is_ a bug. > In fact, it seems to be just because I was not passing the mapper as a keyword parameter but just as the second...
One obvious solution is to make it work with both positional and keyword args, presumably by checking the length of the positional args. Another solution could be to more strictly...
The documentation of this function is weird because it utilizes the docstring from `ScalarBars` class, but the method on `Plotter` does custom stuff before passing on the inputs. Some of...