user27182
user27182
### Overview Add full example showing how to plot different anatomical groups from the `whole_body_ct` datasets. Preview image showing a plot of the cardiovascular system:  #### TODO Dependencies: -...
### Describe the bug, what's wrong, and what you expected. There is an issue with how `pyvista.ChartMPL` plots are rendered. E.g. in the [ChartMPL docs](https://docs.pyvista.org/version/stable/api/plotting/charts/_autosummary/pyvista.ChartMPL.html#pyvista.ChartMPL), this is the image displayed....
### Describe the bug, what's wrong, and what you expected. These filters modify the input by adding `vtkOriginalPointIds` `vtkOriginalPointIds` arrays unexpectedly. Should probably document this and/or remove them from the...
### Describe the bug, what's wrong, and what you expected. See the docs here: https://docs.pyvista.org/version/stable/examples/02-plot/backface_props.html The backface params work for the static plots but not the interactive ones. EDIT: That...
### Describe the bug, what's wrong, and what you expected. If I plot a grayscale image with just three values (0, 127, 255): ``` python import pyvista as pv import...
### Overview Follow-up to #6592. - Make sure colors match the web standard: https://www.w3.org/TR/css-color-4/#named-colors - `brown` was found to be non-conformant and is modified by this PR. - Tests for...
### Overview Resolve #6591. Add approx 60 new colors from https://vtk.org/doc/nightly/html/classvtkNamedColors.html#details. Only new colors from this class are added.`vtkNamedColors` which have the same name or value as existing colors are...
### Overview - [x] Allow documenting individual enum members (see https://enum-tools.readthedocs.io/en/latest/api/autoenum.html) - [x] Add cell info - [x] Add figures for linear cells - [x] Format table Resolve #6549 The...
### Overview Fix bug with deep copy where the names of `None` blocks are not copied ``` python import pyvista as pv multi = pv.MultiBlock([None]) print(multi.keys()) # ['Block-00'] copied =...
### Describe the feature you would like to be added. Enable use of these colors: [VTK Named Colors](https://htmlpreview.github.io/?https://github.com/Kitware/vtk-examples/blob/gh-pages/VTKNamedColorPatches.html) e.g. ```python import pyvista as pv pv.Sphere().plot(color='ultramarine') ``` ### Links to VTK...