Class Back

java.lang.Object
com.diozero.animation.easing.Back

public class Back
extends Object
  • Field Summary

    Fields
    Modifier and Type Field Description
    static String IN  
    static String IN_OUT  
    static String OUT  
  • Constructor Summary

    Constructors
    Constructor Description
    Back()  
  • Method Summary

    Modifier and Type Method Description
    static float easeIn​(float t, float b, float c, float d)  
    static float easeIn​(float t, float b, float c, float d, float s)  
    static float easeInOut​(float t, float b, float c, float d)  
    static float easeInOut​(float t, float b, float c, float d, float s)  
    static float easeOut​(float t, float b, float c, float d)  
    static float easeOut​(float t, float b, float c, float d, float s)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • Back

      public Back()
  • Method Details

    • easeIn

      public static float easeIn​(float t, float b, float c, float d)
    • easeIn

      public static float easeIn​(float t, float b, float c, float d, float s)
    • easeOut

      public static float easeOut​(float t, float b, float c, float d)
    • easeOut

      public static float easeOut​(float t, float b, float c, float d, float s)
    • easeInOut

      public static float easeInOut​(float t, float b, float c, float d)
    • easeInOut

      public static float easeInOut​(float t, float b, float c, float d, float s)