I would like to just take a 2D silhouette outline of a side of one of my 3D meshes. I located the question How to extract side-view outline (e.g. top view) of a 3D object to 2D surface? but since it was made over a year ago, and I am using Blender 2.8, the script does not work for me. Any advice on how to update it? It seems to error out around this part:
copy = ob.copy()
sil = bpy.data.meshes.new("silhouette")
copy.data = sil
scene.objects.link(copy)
scene.objects.active = copy
copy.select = True
bm.to_mesh(sil)
Also, more importantly, how would I export the silhouette? Like it wouldn't save as an stl file.