OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rotateTo
(Results
1 - 2
of
2
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
Actions.java
184
static public RotateToAction
rotateTo
(float rotation) {
185
return
rotateTo
(rotation, 0, null);
188
static public RotateToAction
rotateTo
(float rotation, float duration) {
189
return
rotateTo
(rotation, duration, null);
192
static public RotateToAction
rotateTo
(float rotation, float duration, Interpolation interpolation) {
/packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerFragment.java
512
final Animator
rotateTo
= ObjectAnimator.ofFloat(toView, SCALE_X, 0, 1);
513
rotateTo
.setDuration(mShortAnimationDuration);
514
rotateTo
.setInterpolator(new AccelerateInterpolator());
541
animatorSet.play(rotateFrom).before(
rotateTo
).with(buttons);
Completed in 73 milliseconds