Skip to main content

Easing Class

Definition

Base class for all Easing classes.

public class Easing

Methods

NameDescription
EaseReturns the value of the transition for the specified progress.
ParseParses a Easing type string.

Ease Method

Returns the value of the transition for the specified progress.

public double Ease(double progress)

Parameters

progress double

Returns

double

Parse Method

Parses a Easing type string.

public Avalonia.Animation.Easings.Easing Parse(string e)

Parameters

e string

The Easing type string.

Returns

Avalonia.Animation.Easings.Easing

Returns the instance of the parsed type.