conjugate method

Quaternion conjugate()

Implementation

Quaternion conjugate() {
  _x *= -1;
  _y *= -1;
  _z *= -1;

  onChangeCallback();

  return this;
}