operator []= method

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

Set the component of the quaternion at the index i.

Implementation

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