Loading...
Searching...
No Matches
AnimationType Enum Reference

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).
 

Detailed Description

Enum described animation functions.

Referenced from CircleMapObject, IconMapObject, FlatIconMapObject, LocationWindow.

Definition at line 17 of file animation_type.dart.

Member Data Documentation

◆ CUBIC

AnimationType.CUBIC

animation according to formula f(t) = (-2 * t + 3) * t * t.

Definition at line 29 of file animation_type.dart.

◆ LINEAR

AnimationType.LINEAR

animation according to formula f(t) = t.

Definition at line 25 of file animation_type.dart.

◆ NONE

AnimationType.NONE

disable animation

Definition at line 21 of file animation_type.dart.

◆ QUINT

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.

◆ SINE

AnimationType.SINE

animation according to formula f(t) = 0.5 - 0.5 * cos(PI * t).

Definition at line 37 of file animation_type.dart.


The documentation for this enum was generated from the following file: