Home | History | Annotate | Download | only in answermethod

Lines Matching defs:MathUtil

57 import com.android.dialer.common.MathUtil;
114 view.setTranslationY(MathUtil.lerp(view.getTranslationY(), newY, SWIPE_LERP_PROGRESS_FACTOR));
118 view.setTranslationX(MathUtil.lerp(view.getTranslationX(), newX, SWIPE_LERP_PROGRESS_FACTOR));
122 view.setAlpha(MathUtil.lerp(view.getAlpha(), newAlpha, SWIPE_LERP_PROGRESS_FACTOR));
126 view.setRotation(MathUtil.lerp(view.getRotation(), newRotation, SWIPE_LERP_PROGRESS_FACTOR));
413 final float clampedProgress = MathUtil.clamp(swipeProgress, -1 /* min */, 1 /* max */);