public static Vector3 Lerp(Vector3 a, Vector3 b, float t) { t = MineNETMath.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)); }
public static Vector2 Lerp(Vector2 a, Vector2 b, float t) { t = MineNETMath.ClampZeroOne(t); return(new Vector2(a.X + (b.X - a.X) * t, a.Y + (b.Y - a.Y) * t)); }