Selection of object by ID

Hi guys,

I’m using Python to do some coding practice and trying to select some objects I created as a result of some operation, e.g.

curves = rs.IntersectBreps( brep1, brep2)

Which function can I use to make ‘curves’ selected?

I’ve search the doc but to no avail.
Thank you very much.

Max

Use either rs.SelectObject or rs.SelectObjects.

http://developer.rhino3d.com/api/RhinoScriptSyntax/win/#object

– Dale

Oh, I overlooked the Object section of the doc. I did not found it in the Selection one but though there must be something for this.
Thank you very much, Dale!
–Max

Help is also available from the EditPythonScript editor - just Click the Help menu…

Thank you very much. --Max