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

com.sencha.gxt.fx.client.easing.BounceIn Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
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