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