4 using SiliconStudio.Core.Mathematics;
6 namespace SiliconStudio.
Paradox.DataModel
14 *(
float*)(location + channel.Offset) = Interpolator.Cubic(
15 channel.ValuePrev.Value,
16 channel.ValueStart.Value,
17 channel.ValueEnd.Value,
18 channel.ValueNext.Value,
23 *(
float*)(location + channel.Offset) = Interpolator.Linear(
24 channel.ValueStart.Value,
25 channel.ValueEnd.Value,
30 throw new NotImplementedException();
AnimationCurveInterpolationType
Describes how a curve should be interpolated.
unsafe override void ProcessChannel(ref Channel channel, CompressedTimeSpan currentTime, IntPtr location, float factor)