Home
last modified time | relevance | path

Searched refs:tBegin (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/ui/motion/
DInterpolateUtils.java59 public static float unitRatio(long t, long tBegin, float tDuration) { in unitRatio() argument
60 if (t <= tBegin) { in unitRatio()
64 return (t - tBegin) / tDuration; in unitRatio()