fromBufferAttribute method

Quaternion fromBufferAttribute(
  1. BufferAttribute<NativeArray<num>> attribute,
  2. int index
)

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;
}