Package | Description |
---|---|
com.sun.javafx.scene.control.skin | |
com.sun.scenario.animation | |
com.sun.scenario.animation.shared | |
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
Modifier and Type | Field and Description |
---|---|
private static Interpolator |
PaginationSkin.interpolator |
Modifier and Type | Class and Description |
---|---|
class |
NumberTangentInterpolator |
class |
SplineInterpolator
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 .
|
Modifier and Type | Field and Description |
---|---|
protected Interpolator |
InterpolationInterval.rightInterpolator |
Constructor and Description |
---|
InterpolationInterval(long ticks,
Interpolator rightInterpolator) |
Modifier and Type | Field and Description |
---|---|
private Interpolator |
Transition.cachedInterpolator |
private static Interpolator |
Transition.DEFAULT_INTERPOLATOR |
private static Interpolator |
KeyValue.DEFAULT_INTERPOLATOR |
static Interpolator |
Interpolator.DISCRETE
Built-in interpolator that provides discrete time interpolation.
|
static Interpolator |
Interpolator.EASE_BOTH
Built-in interpolator instance that provides ease in/out behavior.
|
static Interpolator |
Interpolator.EASE_IN
Built-in interpolator instance that provides ease in behavior.
|
static Interpolator |
Interpolator.EASE_OUT
Built-in interpolator instance that provides ease out behavior.
|
private Interpolator |
TransitionBuilder.interpolator
Deprecated.
|
private Interpolator |
KeyValue.interpolator |
static Interpolator |
Interpolator.LINEAR
Built-in interpolator that provides linear time interpolation.
|
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Interpolator> |
Transition.interpolator
Controls the timing for acceleration and deceleration at each
Transition cycle. |
Modifier and Type | Method and Description |
---|---|
protected Interpolator |
Transition.getCachedInterpolator()
Returns the
Interpolator , that was set when the
Transition was started. |
Interpolator |
Transition.getInterpolator() |
Interpolator |
KeyValue.getInterpolator()
Interpolator to be used for calculating the key value along the
particular interval. |
static Interpolator |
Interpolator.SPLINE(double x1,
double y1,
double x2,
double y2)
Creates an
Interpolator , which curve() is
shaped using the spline control points defined by (x1 , y1
) and (x2 , y2 ). |
static Interpolator |
Interpolator.TANGENT(Duration t,
double v)
Creates a tangent interpolator, for which in-tangent and out-tangent are
identical.
|
static Interpolator |
Interpolator.TANGENT(Duration t1,
double v1,
Duration t2,
double v2)
Create a tangent interpolator.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Interpolator> |
Transition.interpolatorProperty() |
Modifier and Type | Method and Description |
---|---|
B |
TransitionBuilder.interpolator(Interpolator x)
Deprecated.
Set the value of the
interpolator property for the instance constructed by this builder. |
void |
Transition.setInterpolator(Interpolator value) |
Constructor and Description |
---|
KeyValue(WritableValue<T> target,
T endValue,
Interpolator interpolator)
Creates a
KeyValue . |