在 three.js 中一共有 9 种 [page:BufferAttribute]。每种和 JavaScript 中的类型相对应。 [link:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray#Syntax Typed Arrays].
		THREE.Float64BufferAttribute
		THREE.Float32BufferAttribute
		THREE.Uint32BufferAttribute
		THREE.Int32BufferAttribute
		THREE.Uint16BufferAttribute
		THREE.Int16BufferAttribute
		THREE.Uint8ClampedBufferAttribute
		THREE.Uint8BufferAttribute
		THREE.Int8BufferAttribute
		
		所有上述内容都以相同的方式调用。
			array -- 该值可以是类型化或非类型化的(普通)数组。
			它将被转换为指定的类型。
			If a length is given a new TypedArray will created, initialized with all elements set to zero.
			itemSize -- 应与特定顶点关联的数组值的数量。
			normalized -- (可选)表示缓冲区中的基础数据如何映射到GLSL代码中的值。