setX method

BufferAttribute<NativeArray<num>> setX(
  1. int index,
  2. dynamic x
)

Implementation

BufferAttribute setX(int index, x) {
  array[index * itemSize] = x;

  return this;
}