Interface TweenEquation


public interface TweenEquation
An interface to generally apply a function to a value.
  • Method Summary

    Modifier and TypeMethodDescription
    floatcompute​(float progress)
    Applies the function to the value and returns the result.
  • Method Details

    • compute

      float compute​(float progress)
      Applies the function to the value and returns the result.
      Parameters:
      progress - the current value
      Returns:
      a float representing the result of applying the TweenEquation to the value.