Rhino Copy commond

Dear all
Is there a c++ SDK function uesd to copy selected objects?

You can copy objects using
CRhinoDoc::TransformObject (see rhinoSdkDoc.h) for a description of this function.

If you want to copy all selected objects, you can set up a CRhinoObjectIterator with EnableSelectedFilter(true) and pass that to CRhinoDoc::TransformObjects

1 Like