![JAR search and dependency download from the Maven repository](/logo.png)
com.sencha.gxt.fx.client.easing.ElasticOut 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 an {@link Elastic} at the end of the
* animation.
*/
public class ElasticOut extends Elastic {
@Override
public double func(double n) {
return 1 - super.func(1 - n);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy