Hello Graham,
Do you mean using a dictionnary like explaines here ?
In my case I use nested arrays, because of my data structure, and I amvery happy with it. For instance I am storing all the points of my building in an array (arrPoints), such that the point j of structural element i is arrPoints(i)(j).
My script reads texte files and finally draws alll points (and meshes), about 1 million of points.
What I want to do is just store this array (arrPoint). From what I hear from @Helvetosaur I can just write, out of all functions
:
Private arrPoints()
I am referring here to Helvetosaur example here :
Can I then use this array in other scripts (during the same rhino session) ?