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

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

/**
 * Ext GWT 3.0.0-rc - Ext for GWT
 * Copyright(c) 2007-2011, Sencha, Inc.
 * [email protected]
 *
 * http://sencha.com/license
 */
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