Table of Contents

Delegate EasingFunction

Namespace
Northwoods.Go
Assembly
Northwoods.GoDiagram.WinForms.dll

An EasingFunction describes how much to modify a scalar value based on the current time, the start value, the change in value, and the duration.

public delegate double EasingFunction(double currentTime, double startValue, double byValue, int duration)

Parameters

currentTime double
startValue double
byValue double
duration int

Returns

double