Home | History | Annotate | Download | only in input

Lines Matching refs:cosine

5103                             // the angle betweeen them is near zero and the cosine of the angle
5112 float cosine = dot / (dist1 * dist2); // denominator always > 0
5113 if (cosine >= mConfig.pointerGestureSwipeTransitionAngleCosine) {
5118 "cosine %0.3f >= %0.3f",
5121 cosine, mConfig.pointerGestureSwipeTransitionAngleCosine);
5129 "cosine %0.3f < %0.3f",
5132 cosine, mConfig.pointerGestureSwipeTransitionAngleCosine);