public class BackInterpolator extends EasingInterpolator
Type | Property and Description |
---|---|
javafx.beans.property.DoubleProperty |
amplitude
Gets the amplitude.
|
easingModeProperty
Constructor and Description |
---|
BackInterpolator()
Default constructor.
|
BackInterpolator(EasingMode easingMode)
Constructs the interpolator with a specific easing mode.
|
BackInterpolator(EasingMode easingMode,
double amplitude)
Constructs the interpolator with a specific easing mode and an amplitude.
|
Modifier and Type | Method and Description |
---|---|
javafx.beans.property.DoubleProperty |
amplitudeProperty()
Gets the amplitude.
|
protected double |
baseCurve(double v)
Defines the base curve for the interpolator.
|
double |
getAmplitude()
Gets the amplitude.
|
void |
setAmplitude(double amplitude)
Sets the amplitude.
|
curve, easingModeProperty, getEasingMode, setEasingMode
getAmplitude()
,
setAmplitude(double)
public BackInterpolator()
public BackInterpolator(EasingMode easingMode)
easingMode
- The easing mode.public BackInterpolator(EasingMode easingMode, double amplitude)
easingMode
- The easing mode.amplitude
- The amplitude.public javafx.beans.property.DoubleProperty amplitudeProperty()
getAmplitude()
,
setAmplitude(double)
protected double baseCurve(double v)
EasingInterpolator
baseCurve
in class EasingInterpolator
v
- The normalized value/time/progress of the interpolation (between 0 and 1).Interpolator.curve(double)
public double getAmplitude()
amplitudeProperty()
public void setAmplitude(double amplitude)
amplitude
- The amplitude.amplitudeProperty()
Copyright © 2013 ExtFX. All Rights Reserved.