Returns the last PVector in the array
A reference to the last PVector in the array
VectorArr arr({PVector(1, 2, 3), PVector(4, 5, 6)}); arr.last() += PVector(1, 1, 1); //arr.arr = [[1, 2, 3], [5, 6, 7]]