Example #1
0
 public static VelocityDot LerpUnclamped(VelocityDot a, VelocityDot b, float t)
 {
     return(new VelocityDot(Mathf.LerpUnclamped(a.Float, b.Float, t)));
 }
Example #2
0
 public static VelocityDot Max(VelocityDot a, VelocityDot b)
 {
     return(new VelocityDot(Mathf.Max(a.Float, b.Float)));
 }
Example #3
0
 public static VelocityDot Clamp(VelocityDot value, VelocityDot min, VelocityDot max)
 {
     return(new VelocityDot(Mathf.Clamp(value.Float, min.Float, max.Float)));
 }
Example #4
0
 public static VelocityDot Clamp01(VelocityDot value)
 {
     return(new VelocityDot(Mathf.Clamp01(value.Float)));
 }