Package doodlepad.easing
Class Circ
java.lang.Object
doodlepad.easing.Circ
Robert Penner's easing functions in Java
(See https://github.com/jesusgollonet/processing-penner-easing)
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic double
easeIn
(double t, double b, double c, double d) A function to compute circular easing-instatic double
easeInOut
(double t, double b, double c, double d) A function to compute circular easing- and outstatic double
easeOut
(double t, double b, double c, double d) A function to compute circular easing-out
-
Constructor Details
-
Circ
public Circ()
-
-
Method Details
-
easeIn
public static double easeIn(double t, double b, double c, double d) A function to compute circular easing-in- Parameters:
t
- Current timeb
- Minimum valuec
- Change in valued
- Maximum time- Returns:
- Easing value
-
easeOut
public static double easeOut(double t, double b, double c, double d) A function to compute circular easing-out- Parameters:
t
- Current timeb
- Minimum valuec
- Change in valued
- Maximum time- Returns:
- Easing value
-
easeInOut
public static double easeInOut(double t, double b, double c, double d) A function to compute circular easing- and out- Parameters:
t
- Current timeb
- Minimum valuec
- Change in valued
- Maximum time- Returns:
- Easing value
-