Class Elastic

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

public class Elastic
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
    Elastic()  
  • 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 a, float p)  
    static float easeInOut​(float t, float b, float c, float d)  
    static float easeInOut​(float t, float b, float c, float d, float a, float p)  
    static float easeOut​(float t, float b, float c, float d)  
    static float easeOut​(float t, float b, float c, float d, float a, float p)  

    Methods inherited from class java.lang.Object

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

  • Constructor Details

    • Elastic

      public Elastic()
  • 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 a, float p)
    • 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 a, float p)
    • 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 a, float p)