Uses of Class
javafx.animation.Interpolator
Packages that use Interpolator
-
Uses of Interpolator in com.sun.scenario.animation
Subclasses of Interpolator in com.sun.scenario.animationModifier and TypeClassDescriptionclass
An implementation of a spline interpolator for temporal interpolation that tries to follow the specification referenced by: http://www.w3.org/TR/SMIL/animation.html#animationNS-OverviewSpline . -
Uses of Interpolator in javafx.animation
Subclasses of Interpolator in javafx.animationFields in javafx.animation declared as InterpolatorModifier and TypeFieldDescriptionstatic final Interpolator
Interpolator.DISCRETE
Built-in interpolator that provides discrete time interpolation.static final Interpolator
Interpolator.EASE_BOTH
Built-in interpolator instance that provides ease in/out behavior.static final Interpolator
Interpolator.EASE_IN
Built-in interpolator instance that provides ease in behavior.static final Interpolator
Interpolator.EASE_OUT
Built-in interpolator instance that provides ease out behavior.static final Interpolator
Interpolator.LINEAR
Built-in interpolator that provides linear time interpolation.protected final Interpolator
InterpolationInterval.rightInterpolator
Methods in javafx.animation that return InterpolatorModifier and TypeMethodDescriptionprotected Interpolator
Transition.getCachedInterpolator()
Returns theInterpolator
, that was set when theTransition
was started.KeyValue.getInterpolator()
Interpolator
to be used for calculating the key value along the particular interval.final Interpolator
Transition.getInterpolator()
Gets the value of theinterpolator
property.static Interpolator
Interpolator.SPLINE
(double x1, double y1, double x2, double y2) Creates anInterpolator
, whichcurve()
is shaped using the spline control points defined by (x1
,y1
) and (x2
,y2
).Methods in javafx.animation that return types with arguments of type InterpolatorModifier and TypeMethodDescriptionfinal ObjectProperty<Interpolator>
Transition.interpolatorProperty()
Controls the timing for acceleration and deceleration at eachTransition
cycle.Methods in javafx.animation with parameters of type InterpolatorModifier and TypeMethodDescriptionfinal void
Transition.setInterpolator
(Interpolator value) Sets the value of theinterpolator
property.Constructors in javafx.animation with parameters of type InterpolatorModifierConstructorDescriptionprotected
InterpolationInterval
(long ticks, Interpolator rightInterpolator) KeyValue
(WritableValue<T> target, T endValue, Interpolator interpolator) Creates aKeyValue
.