Files
tooll3--t3/Core/Animation/IOutsideCurveMapper.cs
2026-07-13 13:13:17 +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);
}