DotRecastNetSim/src/DotRecast.Detour.Extras/Jumplink/Trajectory.cs

18 lines
384 B
C#

using System;
using DotRecast.Core;
namespace DotRecast.Detour.Extras.Jumplink
{
public class Trajectory
{
public float Lerp(float f, float g, float u)
{
return u * g + (1f - u) * f;
}
public virtual Vector3f Apply(Vector3f start, Vector3f end, float u)
{
throw new NotImplementedException();
}
}
}