Searched refs:tension (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DAnticipateOvershootInterpolator.java38 * @param tension Amount of anticipation/overshoot. When tension equals 0.0f,
42 public AnticipateOvershootInterpolator(float tension) { argument
43 mTension = tension * 1.5f;
47 * @param tension Amount of anticipation/overshoot. When tension equals 0.0f,
50 * @param extraTension Amount by which to multiply the tension. For instance,
52 * a tension of 2.0f, you would use an extraTension of 1.5f.
54 public AnticipateOvershootInterpolator(float tension, float extraTension) { argument
55 mTension = tension * extraTensio
[all...]
H A DAnticipateInterpolator.java34 * @param tension Amount of anticipation. When tension equals 0.0f, there is
38 public AnticipateInterpolator(float tension) { argument
39 mTension = tension;
53 // a(t) = t * t * ((tension + 1) * t - tension)
H A DOvershootInterpolator.java35 * @param tension Amount of overshoot. When tension equals 0.0f, there is
39 public OvershootInterpolator(float tension) { argument
40 mTension = tension;
54 // _o(t) = t * t * ((tension + 1) * t + tension)

Completed in 74 milliseconds