Java javafx.animation Interpolator fields, constructors, methods, implement or subclass

Example usage for Java javafx.animation Interpolator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javafx.animation Interpolator.

The text is from its open source code.

Field

InterpolatorLINEAR
Built-in interpolator that provides linear time interpolation.
InterpolatorEASE_BOTH
Built-in interpolator instance that provides ease in/out behavior.
InterpolatorEASE_IN
Built-in interpolator instance that provides ease in behavior.
InterpolatorEASE_OUT
Built-in interpolator instance that provides ease out behavior.

Method

InterpolatorSPLINE(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 ).