Files
2026-07-13 13:15:05 +08:00

8 lines
225 B
C#

using System.Collections.Generic;
namespace T3.Core.Animation;
internal interface IOutsideCurveMapper
{
void Calc(double u, SortedList<double, VDefinition> curveElements, out double newU, out double offset);
}