InterleavedBufferAttribute constructor

InterleavedBufferAttribute(
  1. InterleavedBuffer? data,
  2. int itemSize,
  3. int offset, [
  4. 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;
}