inverse method

Vec3 inverse()

Vector cross product @param target Optional target to save in.

Implementation

Vec3 inverse(){
  x *=-1;
  y *= -1;
  z *= -1;
  return this;
}