Marco Musy

Results 439 comments of Marco Musy

Thanks for reporting. I've added documentation for this behavior in both is_closed() and volume() methods, but also in `Box` and `Cylinder`. Checking whether the mesh is triangular in volume() might...

Thanks for reporting! I just committed a [fix](https://github.com/marcomusy/vedo/commit/8d63d9a90fc1e72893998916a56e10ea917c64ee), but I guess that the simple python `int` should also do the trick...

Hi Francisco, I think it is very difficult problem because the original mesh is very irregular and even at the very first step you run into the problem of having...

Or you can try with `pymeshfix` but it takes a LONG time to process it (1 min): ``` pip install pymeshfix ``` then ```py import vedo # 2024.5.2 import time...

Sorry I overlooked your question.. SInce the main issue seems to be the self-intersecting vertices in the extrusion, you may try to detect them before extrusion with `intersect_with_line()` described [here](https://vedo.embl.es/autodocs/content/vedo/vedo/mesh.html#Mesh.intersect_with_line)...

Yes with [add_ids](https://vedo.embl.es/autodocs/content/vedo/vedo/core.html#CommonAlgorithms.add_ids) ```py mesh.add_ids() print(mesh.pointdata["PointID"]) print(mesh.pointdata["Gauss_Curvature"]) ```

You can associate data to points (vertices) or to faces (cells) in vedo. Curvature is computed on points. You can interpolate it to triangle faces with `map_points_to_cells()` [here](https://vedo.embl.es/autodocs/content/vedo/vedo/core.html#CommonAlgorithms.map_points_to_cells). Once you...

You should be able to do it with ```py plotter.screenshot("filneame.png", scale=2) ``` > Also, is there any plan to update the example documentation? Documentation should be already up to date...

Thanks for pointing to the problem I just pushed a fix for it: ``` video = Video(..., scale=2) ```

To be honest I have no experience with torch.multiprocessing, I can only suggest to upgrade vedo to the latest version, but i' m not sure that that can cure the...