operator []= method

void operator []= (int i, double arg)

Set the component of the quaternion at the index i.

Implementation

void operator []=(int i, double arg) {
  _qStorage[i] = arg;
}