Kevin Marchais
Results
22
comments of
Kevin Marchais
I'm not sure to understand. The surface is all purple here (corresponding to a thickness of 0.01) because `clip_scalar` is clipping the mesh at a thickness of 0.01. So it...
Here is what I could do, but the final result is a set of points. ```python points = grid.extract_points(grid.point_data["thickness"] > 0, include_cells=False) plotter = pv.Plotter() plotter.add_mesh(points) plotter.show() ``` 