12 lines
290 B
C#
12 lines
290 B
C#
using System.Collections.Generic;
|
|
|
|
namespace T3.Core.Animation;
|
|
|
|
public class ConstantCurveMapper : IOutsideCurveMapper
|
|
{
|
|
public void Calc(double u, SortedList<double, VDefinition> curveElements, out double newU, out double offset)
|
|
{
|
|
newU = u;
|
|
offset = 0.0;
|
|
}
|
|
}; |