copyFromUnknown method
Implementation
@override
Vector4 copyFromUnknown(array, [int offset = 0]) {
x = array[offset].toDouble();
y = array[offset + 1].toDouble();
z = array[offset + 2].toDouble();
w = array[offset + 3].toDouble();
return this;
}