Hi,
I’m trying to add a SubD object to a File3dm through RhinoCommon, but it seems like I can’t find an appropriate File3dmObjectTable.AddSubD method for it. With a RhinoDoc, I’ve noticed that this is possible;
RhinoDoc.ActiveDoc.Objects.AddSubD(subD);
But there seems like there is no AddSubD for the File3dm version;
File3dm.Objects.AddSubD(subD); //compile error
Is this by design? If so, is there a way around it without converting the SubD to a Brep?