Robert Collar

Results 14 comments of Robert Collar

Hey @jourdain, it might be that your last comment IDs the issue. In the example below, I've isolated the delay to the `render` call: ```python from pyvista.trame import PyVistaRemoteView from...

Behavior experienced on my side: https://github.com/pyvista/pyvista/assets/44422832/bf7f3709-95bd-46cc-8fe1-fdc560503fc5

Interesting — it becomes a cube for coordinates (1e7, 1e7, 1e7):

Cool! I'll work on a MRE with vtk this weekend and post back here :)

Hey! I've put together an MRE with just vtk: ```python def plot_point_as_sphere_vtk(coords, radius=1): import vtkmodules.vtkInteractionStyle import vtkmodules.vtkRenderingOpenGL2 from vtkmodules.vtkCommonCore import vtkPoints from vtkmodules.vtkCommonDataModel import ( vtkCellArray, vtkPolyData ) from vtkmodules.vtkRenderingCore...

The example above produces the same behavior as that exhibited by pyvista, which confirms it's a vtk thing. Interestingly however, the issue goes away when the radius is scaled up,...

I can also reproduce this behavior on the pyvista side, though it can alternatively be improved by increasing the value passed to the `factor` glyph argument: ```python def plot_point_as_sphere_pyvista(coords, radius=1.0,...

I'm a bit surprised that changing the `factor` value resolves this, as [the documentation](https://github.com/pyvista/pyvista/blob/ecbc987ad1120858b6b4af06c89e4016f6ab0535/pyvista/core/filters/data_set.py#L2380) states that it is applied to the scaling array, yet setting `scale` to False, as is...

FYI I'm looking into how to get/set the dtype on the vtk side and will update here if I can figure it out.

Hi all! Is it possible to integrate a viewer for a tile server (e.g., Bane's [`localtileserver`](https://github.com/banesullivan/localtileserver) or kitware's [`large_image`](https://github.com/girder/large_image)? If not, I think this would be a great addition! For...