fromBufferAttribute method
Implementation
Quaternion fromBufferAttribute(BufferAttribute attribute, int index) {
_x = attribute.getX(index)!;
_y = attribute.getY(index)!;
_z = attribute.getZ(index)!;
_w = attribute.getW(index)!;
return this;
}