2020-02-21 01:37:52 +00:00
|
|
|
namespace MoonTools.Curve
|
2019-10-28 18:17:14 +00:00
|
|
|
{
|
|
|
|
public static class TimeHelper
|
|
|
|
{
|
2019-12-09 02:42:58 +00:00
|
|
|
public static float Normalized(float t, float minT, float maxT) => (t - minT) / (maxT - minT);
|
2019-10-28 18:17:14 +00:00
|
|
|
}
|
2020-02-21 01:37:52 +00:00
|
|
|
}
|