setZ method
Sets the z component of the item at the given index.
Implementation
@override
InterleavedBufferAttribute setZ(int index, num z) {
data!.array[index * data!.stride + offset + 2] = z.toDouble();
return this;
}
Sets the z component of the item at the given index.
@override
InterleavedBufferAttribute setZ(int index, num z) {
data!.array[index * data!.stride + offset + 2] = z.toDouble();
return this;
}