InterleavedBufferAttribute constructor

InterleavedBufferAttribute(
  1. InterleavedBuffer? data,
  2. int _itemSize,
  3. int offset,
  4. bool _normalized,
)

Implementation

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