mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 08:55:35 +00:00
38 lines
No EOL
971 B
C#
38 lines
No EOL
971 B
C#
using System.Numerics;
|
|
using GTweens.Easings;
|
|
|
|
namespace GTweens.Interpolators
|
|
{
|
|
public sealed class SystemVector2Interpolator : IInterpolator<Vector2>
|
|
{
|
|
public static readonly SystemVector2Interpolator Instance = new();
|
|
|
|
SystemVector2Interpolator()
|
|
{
|
|
|
|
}
|
|
|
|
public Vector2 Evaluate(
|
|
Vector2 initialValue,
|
|
Vector2 finalValue,
|
|
float time,
|
|
EasingDelegate easingDelegate
|
|
)
|
|
{
|
|
return new Vector2(
|
|
easingDelegate(initialValue.X, finalValue.X, time),
|
|
easingDelegate(initialValue.Y, finalValue.Y, time)
|
|
);
|
|
}
|
|
|
|
public Vector2 Subtract(Vector2 initialValue, Vector2 finalValue)
|
|
{
|
|
return finalValue - initialValue;
|
|
}
|
|
|
|
public Vector2 Add(Vector2 initialValue, Vector2 finalValue)
|
|
{
|
|
return finalValue + initialValue;
|
|
}
|
|
}
|
|
} |