Marco Musy

Results 216 comments of Marco Musy

Thanks Alia for your comments, lately i've been quite busy and could not dedicate time to this project.. if you have some working notebook it would be great to add...

Hi - thanks for reporting - I must say I'm not familiar with podman containers at all.. Would you try to run this, to understand if the upstream vtk works...

Hi Rafael, are you sure you have openGL capability in your system? you may also have a look at #64 if that applies. One quick test to see if the...

Hi, sorry I'm not familiar with xming.. maybe you can try something like: https://stackoverflow.com/questions/106201/how-can-i-run-an-opengl-application-installed-on-a-linux-machine-from-my-windows

Hi, It's not a trivial problem unfortunately the mesh seems non-manifold, so i'm not sure how you can do it, i tried ```python from vedo import * settings.useDepthPeeling=1 m =...

Yes ! We got the same idea: ``` pip install -U git+https://github.com/marcomusy/vedo.git ``` Then ```python from vedo import * settings.useDepthPeeling=1 # m = Mesh('/home/musy/Downloads/piece_1.obj') m = Mesh('clipped.vtk') m.computeNormals(consistency=False) m.color('k5').alpha(0.3).flat() bb...

interesting findings, you may need to unpack the two methods to see why the cell ids in the first case seem wrong. The `deleteCellsByPointIndex` also deletes those extra triangles because...

Hi I just pushed a new version. It is not perfect in your case because the non-manifold regions are very close to each other so there are faces that get...

Hi - yes you are right - I just fixed it in the master!

You're right ! I will fix the docs. To do that you can take control of the camera with e.g. ```python from vtkplotter import * msh = load(datadir+"apple.ply").lw(0.1) show(msh, axes=1,...