I'm working with Processing and I have an Arraylist of arrays
ArrayList< ICurve []> c = new ArrayList< ICurve []> ();
I need to select a specific item in a specific array of my arraylist, but I can't understand how to do it. I know how to iterate inside the arraylist with the for cycle, but I can't understand how to select the item with a specific index.
Thanks in advance for your help!