![JAR search and dependency download from the Maven repository](/logo.png)
com.sencha.gxt.fx.client.easing.Linear Maven / Gradle / Ivy
/**
* Ext GWT 3.0.0-beta2 - Ext for GWT
* Copyright(c) 2007-2011, Sencha, Inc.
* [email protected]
*
* http://sencha.com/license
*/
package com.sencha.gxt.fx.client.easing;
/**
* A one to one {@link EasingFunction}.
*
*/
public class Linear implements EasingFunction {
@Override
public double func(double n) {
return n;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy