Click or drag to resize

ZoomPanelQuinticAnimatorSetParameters Method

Sets the parameters for the quintic function.

Namespace:  Ab2d.Animations
Assembly:  Ab2d.Controls.ZoomPanel (in Ab2d.Controls.ZoomPanel.dll) Version: 5.2.6631.1040
Syntax
Remarks

The parameters for the quintic function define the behavior of the animation.

The quintic function is defined as:
f(x) = a * x5 + b * x4 + c * x3 + d * x2 + e * x
note: x5 = x * x * x * x * x

The default values for the parameters are:
a = 6
b = -15
c = 10
d = e = 0

Some examples for the parameters can be found at http://www.timotheegroleau.com/Flash/experiments/easing_function_generator.htm

See Also