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