Searched refs:endAngle (Results 1 - 3 of 3) sorted by relevance

/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselController.java626 * @param endAngle the card unit to which the carousel should rotate to
634 * If the current position is further away, it is set at maxAnimatedArc from endAngle.
637 public void setCarouselRotationAngle(float endAngle, int milliseconds, int interpolationMode, argument
640 mRenderScript.setCarouselRotationAngle(endAngle, milliseconds,
H A Dcarousel.rs722 const float endAngle = startAngle + visibleSlotCount * wedgeAngle;
738 positionAlpha = (endAngle - cardPosition(i)) / wedgeAngle;
1281 float endAngle,
1290 if (actualStart <= endAngle) {
1291 if (actualStart < endAngle - maxAnimatedArc) {
1292 actualStart = endAngle - maxAnimatedArc;
1296 if (actualStart > endAngle + maxAnimatedArc) {
1297 actualStart = endAngle + maxAnimatedArc;
1307 autoscrollStopAngle = carouselRotationAngleToRadians(endAngle);
H A DCarouselRS.java638 public void setCarouselRotationAngle(float endAngle, int milliseconds, int interpolationMode, argument
640 mScript.invoke_setCarouselRotationAngle2(endAngle, milliseconds, interpolationMode,

Completed in 50 milliseconds