Searched defs:translation (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageShow.java649 Point translation = MasterImage.getImage().getTranslation();
650 translation.x = (int) (originalTranslation.x + translateX);
651 translation.y = (int) (originalTranslation.y + translateY);
652 MasterImage.getImage().setTranslation(translation);
678 Point translation = MasterImage.getImage().getTranslation();
679 constrainTranslation(translation, scaleFactor);
680 MasterImage.getImage().setTranslation(translation);
704 Point translation = MasterImage.getImage().getTranslation();
705 translation.x = (Integer) animation.getAnimatedValue();
706 MasterImage.getImage().setTranslation(translation);
810 constrainTranslation(Point translation, float scale) argument
[all...]
H A DMasterImage.java606 Point translation = getTranslation();
614 m.postTranslate(translation.x * getScaleFactor(),
615 translation.y * getScaleFactor());
746 public void setTranslation(Point translation) { argument
752 mTranslation.x = translation.x;
753 mTranslation.y = translation.y;
/packages/apps/Launcher3/src/com/android/launcher3/
H A DWorkspace.java1526 * @param translation the amount of shift.
1529 public void setWorkspaceYTranslationAndAlpha(float translation, float alpha) { argument
1530 setWorkspaceTranslationAndAlpha(Direction.Y, translation, alpha);
1532 mLauncher.getQsbContainer().setTranslationY(translation);
1539 * @param translation the amount of shift.
1542 private void setWorkspaceTranslationAndAlpha(Direction direction, float translation, float alpha) { argument
1549 property.set(currentChild, translation);
1554 if (Float.compare(translation, 0) == 0) {
1557 property.set(child, translation);
1566 * @param translation th
1569 setHotseatTranslationAndAlpha(Direction direction, float translation, float alpha) argument
[all...]

Completed in 207 milliseconds