Package doodlepad.easing
Class Expo
java.lang.Object
doodlepad.easing.Expo
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 a exponential easing-instatic double
easeInOut
(double t, double b, double c, double d) A function to compute a exponential easing-in and easing-outstatic double
easeOut
(double t, double b, double c, double d) A function to compute a exponential easing-out
-
Constructor Details
-
Expo
public Expo()
-
-
Method Details
-
easeIn
public static double easeIn(double t, double b, double c, double d) A function to compute a exponential 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 a exponential 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 a exponential easing-in and easing-out- Parameters:
t
- Current timeb
- Minimum valuec
- Change in valued
- Maximum time- Returns:
- Easing value
-