setY method

BufferAttribute<NativeArray<num>> setY(
  1. int index,
  2. dynamic y
)

Implementation

BufferAttribute setY(int index, y) {
  array[index * itemSize + 1] = y;

  return this;
}