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