fromBuffer method

  1. @override
Vector4 fromBuffer(
  1. BufferAttribute<NativeArray<num>> attribute,
  2. int index
)
override

Implementation

@override
Vector4 fromBuffer(BufferAttribute attribute, int index) {
  x = attribute.getX(index)!.toDouble();
  y = attribute.getY(index)!.toDouble();
  z = attribute.getZ(index)!.toDouble();
  w = (attribute.getW(index) ?? 0).toDouble();

  return this;
}