copyAt method
BufferAttribute<NativeArray<num> >
copyAt(
- int index1,
- BufferAttribute<
NativeArray< attribute,num> > - int index2
Implementation
BufferAttribute copyAt(int index1, BufferAttribute attribute, int index2) {
index1 *= itemSize;
index2 *= attribute.itemSize;
for (var i = 0, l = itemSize; i < l; i++) {
array[index1 + i] = attribute.array[index2 + i];
}
return this;
}