Sure would like to have a SelCircle command built into Rhino. Not the same as SelCircular, where you make selections with a circle. Would like to select the circles themselves that are in the drawing. I have a scrip that does it, but have to drag it in at every update. I have to make sure all the curves are simplified then run SelCircle to ensure they are all selected.
Hello - a baby step but in case it helps, here is a script that you can use that, if you make a macro to run it as described below, should survive updates etc. Assign SelCircle to the macro.
SelCircle.py (628 Bytes)
To use the Python script use RunPythonScript
, or a macro:
_-RunPythonScript "Full path to py file inside double-quotes"
I did not do any curve simplifying, I’ll let the user do that if they want, but I don’t want a selection to mess with the geometry.
-Pascal
See also this thread:
Thank you! Just what I needed. Put it into my macro and works great! Saving me all kinds of time.