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

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

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