All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.simonvt.threepanelayout.SmoothInterpolator Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package net.simonvt.threepanelayout;

import android.view.animation.Interpolator;

public class SmoothInterpolator implements Interpolator {

    @Override
    public float getInterpolation(float t) {
        t -= 1.0f;
        return t * t * t * t * t + 1.0f;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy