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

void popBase()

Removes the first PVector in the array

Example

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