Enum described animation functions. More...
Public Attributes | |
NONE | |
disable animation | |
LINEAR | |
animation according to formula f(t) = t . | |
CUBIC | |
animation according to formula f(t) = (-2 * t + 3) * t * t . | |
QUINT | |
animation according to formula f(t) = (6 * t * t - 15 * t + 10) * t * t * t . | |
SINE | |
animation according to formula f(t) = 0.5 - 0.5 * cos(PI * t) . | |
Enum described animation functions.
Referenced from CircleMapObject, IconMapObject, FlatIconMapObject, LocationWindow.
Definition at line 17 of file animation_type.dart.
AnimationType.CUBIC |
animation according to formula f(t) = (-2 * t + 3) * t * t
.
Definition at line 29 of file animation_type.dart.
AnimationType.LINEAR |
animation according to formula f(t) = t
.
Definition at line 25 of file animation_type.dart.
AnimationType.NONE |
disable animation
Definition at line 21 of file animation_type.dart.
AnimationType.QUINT |
animation according to formula f(t) = (6 * t * t - 15 * t + 10) * t * t * t
.
Definition at line 33 of file animation_type.dart.
AnimationType.SINE |
animation according to formula f(t) = 0.5 - 0.5 * cos(PI * t)
.
Definition at line 37 of file animation_type.dart.