Exemplo n.º 1
0
 public static Vector3 Lerp(Vector3 a, Vector3 b, float t)
 {
     t = MineCoreMath.ClampZeroOne(t);
     return(new Vector3(a.X + (b.X - a.X) * t, a.Y + (b.Y - a.Y) * t, a.Z + (b.Z - a.Z) * t));
 }
Exemplo n.º 2
0
 public static Vector2 Lerp(Vector2 a, Vector2 b, float t)
 {
     t = MineCoreMath.ClampZeroOne(t);
     return(new Vector2(a.X + (b.X - a.X) * t, a.Y + (b.Y - a.Y) * t));
 }