public static PolarCoords LerpUnclamped(PolarCoords from, PolarCoords to, float t) { return(new PolarCoords( Radian.Lerp(from.radAngle, to.radAngle, t), Mathf.LerpUnclamped(from.height, to.height, t), false )); }