fromBuffer method
Implementation
@override
Vector3 fromBuffer(BufferAttribute attribute, int index) {
x = attribute.getX(index)?.toDouble() ?? x;
y = attribute.getY(index)?.toDouble() ?? y;
z = attribute.getZ(index)?.toDouble() ?? z;
return this;
}