Nerd_STF/Nerd_STF/Mathematics/IInterpolable.cs

11 lines
245 B
C#

#if CS11_OR_GREATER
namespace Nerd_STF.Mathematics
{
public interface IInterpolable<TSelf>
where TSelf : IInterpolable<TSelf>
{
static abstract TSelf Lerp(TSelf a, TSelf b, double t, bool clamp = true);
}
}
#endif