Skip to main content Link Menu Expand (external link) Document Search Copy Copied

void popEnd()

Removes the last PVector in the array

Example

VectorArr arr({PVector(1, 2, 3), PVector(4, 5, 6)});
arr.popEnd();
//arr.arr = [[1, 2, 3]]