setZ method

BufferAttribute<NativeArray<num>> setZ(
  1. int index,
  2. dynamic z
)

Implementation

BufferAttribute setZ(int index, z) {
  array[index * itemSize + 2] = z;

  return this;
}