| 12345678910111213141516171819 |
- // Copyright (c) The Avalonia Project. All rights reserved.
- // Licensed under the MIT license. See licence.md file in the project root for full license information.
- namespace Avalonia.Animation.Easings
- {
- /// <summary>
- /// Eases in a <see cref="double"/> value
- /// using a quartic equation.
- /// </summary>
- public class QuarticEaseIn : Easing
- {
- /// <inheritdoc/>
- public override double Ease(double progress)
- {
- double p2 = progress * progress;
- return p2 * p2;
- }
- }
- }
|