I want to make a script which adds a flange to a plate. I didn’t start it yet, only made a few scratch codes and I want to add that effect from extruding a surface , when the new object is transparent and still can move the mouse to choose its height for example. I think if I could read the Rhino and rhinoscriptsyntax library, ill be able to figure it out and learn more. so, any ideas of how can I found these 2?
I think you will need to dig into Rhinocommon (available in Python) and not just rhinoscriptsyntax for the dynamic display aspects- though I have never done this…
Well, the poor man’s way to do this without much code is just to gather up your curves in the script, select them and script rs.Command("ExtrudeCrv") which will allow you all the interactivity and features of the native Rhino command (including preview) during your script…