Searched refs:touchTranslation (Results 1 – 4 of 4) sorted by relevance
731 float touchTranslation = MathUtils.abs(x - mStartX); in handleMoveEvent() local733 float delta = touchTranslation - mPreviousTouchTranslation; in handleMoveEvent()741 mPreviousTouchTranslation = touchTranslation; in handleMoveEvent()744 if (!mDragSlopPassed && touchTranslation > mSwipeTriggerThreshold) { in handleMoveEvent()760 if (touchTranslation > mBaseTranslation) { in handleMoveEvent()761 float diff = touchTranslation - mBaseTranslation; in handleMoveEvent()765 touchTranslation = mBaseTranslation + progress; in handleMoveEvent()767 float diff = mBaseTranslation - touchTranslation; in handleMoveEvent()771 touchTranslation = mBaseTranslation - progress; in handleMoveEvent()807 touchTranslation = 0; in handleMoveEvent()[all …]
99 whenever(animationViewController.touchTranslation).thenReturn(PointF(0f, 0f)) in isWithinSensorAreaAndPaused()111 whenever(animationViewController.touchTranslation).thenReturn(offset) in isWithinSensorAreaWhenTranslated()127 whenever(animationViewController.touchTranslation).thenReturn(PointF(0f, 0f)) in isNotWithinSensorArea()
73 open val touchTranslation: PointF = PointF(0f, 0f) in <lambda>() constant
135 val translation = animationViewController?.touchTranslation ?: PointF(0f, 0f) in <lambda>()