public static float Lerp(float v1, float v2, float amount)
 {
     return(Helper.Lerp(v1, v2, amount));
 }