public interface MotionManager
| Modifier and Type | Method and Description |
|---|---|
Motion |
easeIn(int start,
int stop,
long duration)
Moves from start to stop with a time constraint.
|
Motion |
easeInOut(int start,
int stop,
long duration)
Moves from start to stop with a time constraint.
|
Motion |
easeOut(int start,
int stop,
long duration)
Moves from start to stop with a time constraint.
|
Motion easeIn(int start, int stop, long duration)
start - the start value.stop - the stop value.duration - the duration of the motion.Motion easeInOut(int start, int stop, long duration)
start - the start value.stop - the stop value.duration - the duration of the motion.Motion easeOut(int start, int stop, long duration)
start - the start value.stop - the stop value.duration - the duration of the motion.