Lines Matching refs:scrollProgress
694 float scrollProgress = getScrollProgress(screenCenter, child, i);
695 float alpha = 1 - Math.abs(scrollProgress);
1148 float scrollProgress = delta / (totalDistance * 1.0f);
1149 scrollProgress = Math.min(scrollProgress, 1.0f);
1150 scrollProgress = Math.max(scrollProgress, -1.0f);
1151 return scrollProgress;