INTERPOLATE ON STL: Plotting scalar field on 50 points on An 70000-points STL surface

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’)
1 Like