Delete lingering MyEasingFunction.java

I made the decision to remove this file instead of updating it, as I'm
sure most will instead prefer to look at the actual Easing class. If you
miss this example class... ¯\_(ツ)_/¯
This commit is contained in:
almic 2018-05-03 08:37:00 -06:00
parent 9b9d2a68cb
commit 689d484615
No known key found for this signature in database
GPG key ID: 432BBCA8E2FFF871

View file

@ -1,18 +0,0 @@
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;
}
}