InterleavedBufferAttribute constructor
InterleavedBufferAttribute(
- InterleavedBuffer? data,
- int itemSize,
- int offset,
- bool normalized,
Implementation
InterleavedBufferAttribute(
InterleavedBuffer? data,
int itemSize,
this.offset,
bool normalized,
) : super(Float32Array(0), itemSize) {
this.data = data;
type = "InterleavedBufferAttribute";
this.itemSize = itemSize;
this.normalized = normalized;
}