copyFromArray method
Copies elements from array
into this starting at offset
.
Implementation
void copyFromArray(List<double> array, [int offset = 0]) {
_v3storage[2] = array[offset + 2];
_v3storage[1] = array[offset + 1];
_v3storage[0] = array[offset + 0];
}