invert method

Quaternion invert()

Implementation

Quaternion invert() {
  // quaternion is assumed to have unit length

  return conjugate();
}