Hi,
Is it possible to create a dictionary with geometry ( in my case ModelCurves ) and keys ?
A bit of background why i need it
I have a n-sided polygon. Each side is made up of n-numbers of ModelCurves. I am modifying each curve separately. i.e, in the given image I am offsetting crv9 to 3m , crv8 to 1m and crv7 to -1, but all three curves remain a part of side āeā. So after modification I can recall all three curves just by giving key/index āeā.
My initial setup is like this ( image ). I select each ModelCurve manually in order and I get a list of 10 items.
Current list structure = [ 0,1,2, 3,4,5,6,7,8,9 ]
Required list structure = [ a:(1), b:(2,3), c:(4,5),d:(6), e:(7,8,9) ]
I dont mind typing a, b,c while selecting curves, but I should be able to recall each curve by their respective side alphatbet. Or in more simple words, i want to group each side with key. I was thinking Dictionary or similar function could be helpful where I could assign key to a set of curves. Is it possible ?