You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had this idea that once an object is created, it should get an id (from the sheet or elsewhere) and that this id should stick to the object no matter what you do with it in the rest of the definition. A nice way to integrate it would be in two ways:
whenever an object is previewed in the rhino viewport, there is also a little number tag on it. So you can always visually see what object in your inventory it is.
If you want to extract the id's in the same tree structure as the objects you can connect ObjProps and one of the outputs is the id.
btw I'm aaaaalmost done with my first C# component! The sheets reader. I'll show you tomorrow.
The text was updated successfully, but these errors were encountered:
I've started with a solid csv reader, as I think that is the most important and should be an option if the livelink falters anyway. I'm making it so it reads a sheet that's organized like the attached with an id per unique geometry, it's dimensions and quantity. The component then outputs GH_Geo for every item, as well as its id and dimensions. This geo can then be fed into your object components for further manipulation.
If we work with IDs, it needs to come from upstream of Grasshopper, as there is no persistent data in GH. IE if the Object component generates an ID for each input geometry, when you close and reopen the script, it won't be the same IDs.
In Rhino, however, you can get unique IDs. That's how I handled updating the geometry to the solved positions in FDMremote.
I had this idea that once an object is created, it should get an id (from the sheet or elsewhere) and that this id should stick to the object no matter what you do with it in the rest of the definition. A nice way to integrate it would be in two ways:
btw I'm aaaaalmost done with my first C# component! The sheets reader. I'll show you tomorrow.
The text was updated successfully, but these errors were encountered: