![JAR search and dependency download from the Maven repository](/logo.png)
com.sencha.gxt.fx.client.easing.Linear Maven / Gradle / Ivy
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