I’ve used Rhino for years however new to Python Scripting in Rhino 5. I’d like to use MeshOutline for batch jobs. The command works perfect with my hands on. However, it refused to corperate viaPython script. (either polysurface or mesh). I extracted partial code and error message I got below:
rs.CurrentView('Top')
objs = rs.AllObjects(select=True)
for obj in objs:
print "Object identifier: ", objs
rs.MeshOutline(objs)
Thank you for the reply. the proposed code will not meet the requirement for the purpose.
Despite it needs to be meshed first, the contour lines are excessive(Right). I simply like to get the edges as shown on the left.
Is there any other way to achive? thanks in advance.