copyIntoArray method

void copyIntoArray(
  1. List<double> array,
  2. [int offset = 0]
)

Copies this into array starting at offset.

Implementation

void copyIntoArray(List<double> array, [int offset = 0]) {
  array[offset + 0] = _v4storage[0];
  array[offset + 1] = _v4storage[1];
  array[offset + 2] = _v4storage[2];
  array[offset + 3] = _v4storage[3];
}