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