Table of Contents

Class PowerEasingFunction

Namespace
HeBianGu.Base.WpfBase
Assembly
HeBianGu.Service.Animation.dll

指定次幂

public class PowerEasingFunction : EasingFunctionBase, IEasingFunction
Inheritance
PowerEasingFunction
Implements
Inherited Members
Extension Methods

Constructors

PowerEasingFunction()

public PowerEasingFunction()

Properties

Pow

public int Pow { get; set; }

Property Value

int

Methods

CreateInstanceCore()

When implemented in a derived class, creates a new instance of the Freezable derived class.

protected override Freezable CreateInstanceCore()

Returns

Freezable

The new instance.

EaseInCore(double)

Provides the logic portion of the easing function that you can override to produce the EaseIn mode of the custom easing function.

protected override double EaseInCore(double normalizedTime)

Parameters

normalizedTime double

Normalized time (progress) of the animation, which is a value from 0 through 1.

Returns

double

A double that represents the transformed progress.