operator []= method Null safety
Set the component of the quaternion at the index i
.
Implementation
void operator []=(int i, double arg) {
_qStorage[i] = arg;
}
Set the component of the quaternion at the index i
.
void operator []=(int i, double arg) {
_qStorage[i] = arg;
}