Hello,
The active GetBase object (GetPoint, GetObject…) is not present in RhinoDoc since some time ago the public documentation shows the methods comented:
Although It looks like the C+ SDK still have the functions to get the active one from a CRhinoDoc:
https://developer.rhino3d.com/api/cpp/class_c_rhino_doc.html
But the RhinoCommon c wrappers only exists the function to retrieve the active GetObject:
IntPtr CRhinoGetObject_ActiveGetObject(uint docSerialNumber);
Now its only possible to check if there is any GetBase object active or not, but it’s not possible to get the pointer
Is there a way to access to other functions to get the all the other const or nonConst pointers of the CRhinoGet objects (String, Integer, Point, Angle…) and parse them with Interop helpers as before?
Thanks in advance
Will