Vector3List constructor Null safety
Create a new vector list with length elements. Optionally it is possible
to specify an offset in the buffer and a stride between each vector.
Implementation
Vector3List(int length, [int offset = 0, int stride = 0])
: super(length, 3, offset, stride);