Example usage for Java javafx.animation Interpolator fields, constructors, methods, implement or subclass
The text is from its open source code.
Interpolator | LINEAR Built-in interpolator that provides linear time interpolation. |
Interpolator | EASE_BOTH Built-in interpolator instance that provides ease in/out behavior. |
Interpolator | EASE_IN Built-in interpolator instance that provides ease in behavior. |
Interpolator | EASE_OUT Built-in interpolator instance that provides ease out behavior. |
Interpolator | SPLINE(double x1, double y1, double x2, double y2) Creates an Interpolator , which #curve(double) curve() is shaped using the spline control points defined by ( x1 , y1 ) and ( x2 , y2 ). |