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

VectorArr(initializer_list<PVector> list)

A constructor that initializes the array with a list of PVectors

Parameter

  • list: The list of PVectors to initialize the array with

Example

VectorArr arr({PVector(1, 2, 3), PVector(4, 5, 6)});