11 lines
245 B
C#
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
|