Searched defs:toDegrees (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DRotateAnimation.java80 * @param toDegrees Rotation offset to apply at the end of the animation.
82 public RotateAnimation(float fromDegrees, float toDegrees) { argument
84 mToDegrees = toDegrees;
95 * @param toDegrees Rotation offset to apply at the end of the animation.
104 public RotateAnimation(float fromDegrees, float toDegrees, float pivotX, float pivotY) { argument
106 mToDegrees = toDegrees;
121 * @param toDegrees Rotation offset to apply at the end of the animation.
140 public RotateAnimation(float fromDegrees, float toDegrees, int pivotXType, float pivotXValue, argument
143 mToDegrees = toDegrees;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRotateDrawable.java185 * @param toDegrees ending angle in degrees
189 public void setToDegrees(float toDegrees) { argument
190 if (mState.mToDegrees != toDegrees) {
191 mState.mToDegrees = toDegrees;

Completed in 77 milliseconds