conjugate method

Quat conjugate()

Conjugate the current Quant

Implementation

Quat conjugate() {
  x *= - 1;
  y *= - 1;
  z *= - 1;
  return this;
}