Uses of Interface
org.pushingpixels.radiance.animation.api.ease.TimelineEase
-
Packages that use TimelineEase Package Description org.pushingpixels.radiance.animation.api org.pushingpixels.radiance.animation.api.ease org.pushingpixels.radiance.animation.api.interpolator -
-
Uses of TimelineEase in org.pushingpixels.radiance.animation.api
Fields in org.pushingpixels.radiance.animation.api declared as TimelineEase Modifier and Type Field Description static TimelineEase
Timeline. DEFAULT_EASE
protected TimelineEase
Timeline.BaseBuilder. ease
private TimelineEase
Timeline. ease
Methods in org.pushingpixels.radiance.animation.api that return TimelineEase Modifier and Type Method Description TimelineEase
Timeline. getEase()
Methods in org.pushingpixels.radiance.animation.api with parameters of type TimelineEase Modifier and Type Method Description B
Timeline.BaseBuilder. setEase(TimelineEase ease)
-
Uses of TimelineEase in org.pushingpixels.radiance.animation.api.ease
Classes in org.pushingpixels.radiance.animation.api.ease that implement TimelineEase Modifier and Type Class Description class
Linear
class
Sine
class
Spline
Spline easer. -
Uses of TimelineEase in org.pushingpixels.radiance.animation.api.interpolator
Fields in org.pushingpixels.radiance.animation.api.interpolator with type parameters of type TimelineEase Modifier and Type Field Description private java.util.ArrayList<TimelineEase>
KeyInterpolators. interpolators
Methods in org.pushingpixels.radiance.animation.api.interpolator with parameters of type TimelineEase Modifier and Type Method Description private void
KeyFrames. init(KeyValues<T> keyValues, KeyTimes keyTimes, TimelineEase... interpolators)
Utility function called by constructors to perform common initialization choresConstructors in org.pushingpixels.radiance.animation.api.interpolator with parameters of type TimelineEase Constructor Description KeyFrames(KeyValues<T> keyValues, TimelineEase... interpolators)
Utility constructor that assumes even division of times according to size of keyValues and interpolation according to interpolators parameter.KeyFrames(KeyValues<T> keyValues, KeyTimes keyTimes, TimelineEase... interpolators)
Full constructor: caller provides an instance of all key* structures which will be used to calculate between all times in the keyTimes list.KeyInterpolators(int numIntervals, TimelineEase... interpolators)
Creates a new instance of KeyInterpolators
-