itkwidgets
itkwidgets copied to clipboard
Geometries pink band
I just updated to the latest version (master branch) and I'm seeing strange artifacts on most meshes I plot where a pink band is shown:
from pyvista import examples
from itkwidgets import view
mesh = examples.download_st_helens().warp_by_scalar()
view(geometries=mesh)

from pyvista import examples
from itkwidgets import view
mesh = examples.download_topo_land()
view(geometries=mesh)

And here's another with a lot:
from pyvista import examples
from itkwidgets import view
mesh = examples.download_topo_global()
view(geometries=mesh)

Discussed further in
https://github.com/Kitware/vtk-js/issues/1201
I also have this in my visualizations of surface meshes.
It seems to me that this is occurring at a certain colour/value in the viridis (default?) look up table. I say this because it seems to almost act as a contour value that separates higher/lower values on the surface mesh.
Not a huge deal, but something of note.