![JAR search and dependency download from the Maven repository](/logo.png)
com.sencha.gxt.fx.client.easing.BounceIn Maven / Gradle / Ivy
package com.sencha.gxt.fx.client.easing;
/**
* {@link EasingFunction} that produces a {@link Bounce} at the start of the
* animation.
*/
public class BounceIn extends Bounce {
@Override
public double func(double n) {
return 1 - super.func(1 - n);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy