blob: e874a57ab67997565b1c6487adda4ae7ea2c555e [file] [log] [blame]
package com.xxmassdeveloper.mpchartexample.custom;
import com.github.mikephil.charting.animation.EasingFunction;
/**
* Example of a custom made animation EasingFunction.
*
* @author Philipp Jahoda
*/
public class MyEasingFunction implements EasingFunction {
@Override
public float getInterpolation(float input) {
// do awesome stuff here, this is just linear easing
return input;
}
}