setXY method
Sets the x and y components of the item at the given index.
Implementation
@override
InterleavedBufferAttribute setXY(int index, x, y) {
index = index * data!.stride + offset;
data!.array[index + 0] = x;
data!.array[index + 1] = y;
return this;
}