Class Sine
- java.lang.Object
-
- org.pushingpixels.radiance.animation.api.ease.Sine
-
- All Implemented Interfaces:
TimelineEase
public class Sine extends java.lang.Object implements TimelineEase
-
-
Constructor Summary
Constructors Constructor Description Sine()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description floatmap(float durationFraction)Maps the [0.0-1.0] range which is the fraction of the associated timeline progression in time (duration fraction) to the [0.0-1.0] range which is used to interpolate the value(s) of the underlying property(s) between theirfromandtovalues.
-
-
-
Method Detail
-
map
public float map(float durationFraction)
Description copied from interface:TimelineEaseMaps the [0.0-1.0] range which is the fraction of the associated timeline progression in time (duration fraction) to the [0.0-1.0] range which is used to interpolate the value(s) of the underlying property(s) between theirfromandtovalues.- Specified by:
mapin interfaceTimelineEase- Parameters:
durationFraction- Fraction of the timeline progression in time. For example, if the timeline is running for 1000 milliseconds and 600 milliseconds have passed, this fraction is 0.6- Returns:
- Value in the [0.0-1.0] range for interpolating the underlying property or properties.
-
-