InterleavedBufferAttribute constructor

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