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

com.sencha.gxt.fx.client.easing.EasingFunction 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;

/**
 * Interface for classes that contain an easing equation.
 * 
 */
public interface EasingFunction {

  /**
   * Returns the calculated easing of the passed in n value.
   * 
   * @param n the value to be eased
   * @return the calculated easing
   */
  public double func(double n);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy