Closed
Description
Thanks for your amazing work.
I am intending to display the 3D mesh reconstruction results in real time.
But every time, the program will be ended after showing the mesh in first time. I have tried ioff(), interactive=False but they didn't work.
Here is a example, I intend to visualize a different mesh (with the same face).
faces = np.array([[0,1,2], [1,2,3], [2,3,4]])
verts = [vert1, vert2, vert3]
for vertex in verts:
mesh=Mesh([vertex,faces])
show(mesh,axis=1,interactive=0)
The program will be stopped after running into show at the first time.