setXYZW method
Implementation
BufferAttribute setXYZW(int index, x, y, z, w) {
index *= itemSize;
array[index + 0] = x;
array[index + 1] = y;
array[index + 2] = z;
array[index + 3] = w;
return this;
}
BufferAttribute setXYZW(int index, x, y, z, w) {
index *= itemSize;
array[index + 0] = x;
array[index + 1] = y;
array[index + 2] = z;
array[index + 3] = w;
return this;
}