setX method
Sets the x component of the vector at the given index.
Implementation
BufferAttribute setX(int index, num x) {
array[index * itemSize] = x;
return this;
}
Sets the x component of the vector at the given index.
BufferAttribute setX(int index, num x) {
array[index * itemSize] = x;
return this;
}