Louis Pujol
Louis Pujol
Hi, **Short answer** : you can change `_ = pl.show_grid(all_edges=True)` by `_ = pl.show_grid(all_edges=True, n_xlabels=4)` (or any value strictly smaller than 5, 5 being the default value). It seems that...
Hi ! Inspection can be done adding the following lines to [`apply_lookup_tables`](https://github.com/pyvista/pyvista/blob/95b9a8263d2678936b6d3acd4a3c469059e762c0/pyvista/plotting/volume_property.py#L111): ```python import numpy as np import matplotlib.pyplot as plt range8 = (-8, 0) linspace8 = np.linspace(*range8, 500) values...
The modifications I did for `to_opacity_tf` and `to_color_tf` were intended to reach an agreement between the RGBA colors obtained from the `LookupTable` functions `map_value` and `__call__` and the transfer functions....
Hi all ! I worked a few time ago on celldata preservation with quadric decimation. Regarding the algorithm, it seemed feasible to keep track of successive edge collapses. Unfortunately, vtk...
Thanks @marcomusy. Just a quick remark: in the docstring of the example it is indicated that data is transferred from faces to faces, it is actually transferred from vertices to...