Dalamud/Dalamud/Interface/Animation/EasingFunctions/InOutCirc.cs
goat b36bdb2086 Revert "clamp value of all easings by default"
This reverts commit 1aada98393.
Breaks the API.
2024-12-30 13:59:59 +01:00

26 lines
732 B
C#

namespace Dalamud.Interface.Animation.EasingFunctions;
/// <summary>
/// Class providing an "InOutCirc" easing animation.
/// </summary>
public class InOutCirc : Easing
{
/// <summary>
/// Initializes a new instance of the <see cref="InOutCirc"/> class.
/// </summary>
/// <param name="duration">The duration of the animation.</param>
public InOutCirc(TimeSpan duration)
: base(duration)
{
// ignored
}
/// <inheritdoc/>
public override void Update()
{
var p = this.Progress;
this.Value = p < 0.5
? (1 - Math.Sqrt(1 - Math.Pow(2 * p, 2))) / 2
: (Math.Sqrt(1 - Math.Pow((-2 * p) + 2, 2)) + 1) / 2;
}
}