BufferAttribute<TData extends NativeArray<num> > constructor
BufferAttribute<TData extends NativeArray<num> > (])
Implementation
BufferAttribute(TData arrayList, int itemSize, [bool normalized = false]) {
type = "BufferAttribute";
array = arrayList;
this.itemSize = itemSize;
count = arrayList.length ~/ itemSize;
this.normalized = normalized == true;
usage = StaticDrawUsage;
updateRange = {"offset": 0, "count": -1};
version = 0;
}