Make the vector point in the opposite direction. @param target Optional target to save in
Vec3 negate(Vec3 target) { target.x = -x; target.y = -y; target.z = -z; return target; }