Adds a PVector to the end of the array
vec
VectorArr arr({PVector(1, 2, 3), PVector(4, 5, 6)}); arr.push(PVector(7, 8, 9)); //arr.arr = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]