I would like to know if there is a way to read custom UserData.
The userdata was writen from a rhino plugin. And I do know the GUID and the definition of the userdata.
However I could not find a way to read this userdata in rhino3dm.net, even though I tried to get the data with the same type. It always returns null.
I noticed that I can read it in rhino plugin as this userdata is somehow “registered” when rhino is loaded. But with rhino3dm.net this step seems to be missing…
You can certainly read user text, both object and document. I also believe the ArchivableDictionary class is in Rhino3dm. However, I do not beleive it is possible to read customer, UserData from objects. @stevebaer, correct me if I am mistaken.
You can read custom user data, using openNURBS, if you wrote it from a C++ plug-in.
The stand alone Rhino3dm currently does not support reading custom user data written by a plug-in. We can add this functionality, but it will take a while before we can get to it.
Thanks for the reply @dale Basically we are trying to read a 3dm file exported from Cadwork(another cad application), which contains userdata defined by them. We’re figuring out a solution to read those userdata externally.