Vector3List.fromList constructor

Vector3List.fromList(
  1. List<Vector3> list,
  2. [int offset = 0,
  3. int stride = 0]
)

Create a new vector list from a list of vectors. Optionally it is possible to specify an offset in the buffer and a stride between each vector.

Implementation

Vector3List.fromList(List<Vector3> list, [int offset = 0, int stride = 0])
    : super.fromList(list, 3, offset, stride);