invert method

Quat invert(
  1. Quat q
)

Inverse the current Quant by q

Implementation

Quat invert(Quat q ) {
  x = q.x;
  y = q.y;
  z = q.z;
  w = q.w;
  conjugate().normalize();
  return this;
}