setValues method

void setValues(
  1. int index,
  2. double x,
  3. double y,
  4. double z,
  5. double w
)

Set the vector at index to x, y, z, and w.

Implementation

void setValues(int index, double x, double y, double z, double w) {
  final i = _vectorIndexToBufferIndex(index);
  buffer[i + 0] = x;
  buffer[i + 1] = y;
  buffer[i + 2] = z;
  buffer[i + 3] = w;
}