[page:BufferAttribute] →
BufferAttribute Types
There are nine types of [page:BufferAttribute] available in Three. These correspond to the 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
Constructor
All of the above are called in the same way.
TypedBufferAttribute( [page:Array array], [page:Integer itemSize] )
array -- this can be a typed or untyped (normal) array. It will be converted to the Type specified.
itemSize -- the number of values of the array that should be associated with a particular vertex.
Properties
See the [page:BufferAttribute] page for inherited properties.
Methods
See the [page:BufferAttribute] page for inherited methods.
Source
[link:https://github.com/mrdoob/three.js/blob/master/src/core/BufferAttribute.js src/core/BufferAttribute.js]