2D Array - remove and add rows
in
Programming Questions
•
2 years ago
I have a 2D array I need to manipulate.
aaaa
bbbb
cccc
1. Remove last row
aaaa
bbbb
2. Add new first row
nnnn
aaaa
bbbb
How do I implement those two functions? Are there dedicated add/remove functions that work with 2D arrays in processing?
1