Can you share the file?
Perhaps the vtki
Python package would be a goodd place to start:
import vtki
data = vtki.read(‘my_file.stl’)
tri = data.tri_filter()
contours = tri.contour()
contours.plot()
contours.save(‘my_new_output.vtk’)
Can you share the file?
Perhaps the vtki
Python package would be a goodd place to start:
import vtki
data = vtki.read(‘my_file.stl’)
tri = data.tri_filter()
contours = tri.contour()
contours.plot()
contours.save(‘my_new_output.vtk’)