I seem to have developed some kind of array dyslexia. I've worked with arrays plenty in the past but for some reason it's not working as I'm expecting in C3.
Let's say that I have a 2D array and I want to add a new row to it, let's say it's just 2 elements 'wide'
Do I push twice onto X, onto Y, or insert?
Everything I try, I seem to get very strange results. I have a loop where I'm trying to add a bunch of new rows, but it all seems to get tagged endlessly onto one row, or the next row seems to inherit the previous row etc.
Basically, say I'm trying to add a new row, say .at(row,0) and .at(row,1), how do I push/insert them?