setW method

BufferAttribute<NativeArray<num>> setW(
  1. int index,
  2. dynamic w
)

Implementation

BufferAttribute setW(int index, w) {
  array[index * itemSize + 3] = w;

  return this;
}