Reference RhinoPython selected object in IronPython

Hi there,

I was thinking what if I selected an object by an RhinoPython method and I want to link that object in IronPython in the same code?

@onrender,

you can get the RhinoObject from id. eg. try this:

rh_obj = rs.coercerhinoobject(object_id, True, True)

_
c.

1 Like

Thanks clement. Now it makes sense everything :). Clear.