Int16BufferAttribute.fromList constructor

Int16BufferAttribute.fromList(
  1. List<int> list,
  2. int itemSize, [
  3. bool normalized = false
])

Implementation

factory Int16BufferAttribute.fromList(List<int> list, int itemSize,[bool normalized = false]){
  return Int16BufferAttribute(Int16Array.fromList(list),itemSize,normalized);
}