Home
last modified time | relevance | path

Searched refs:rotatedBounds (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
DWallpaperCropActivity.java616 float[] rotatedBounds = new float[] { bounds.x, bounds.y };
617 rotateMatrix.mapPoints(rotatedBounds);
618 rotatedBounds[0] = Math.abs(rotatedBounds[0]);
619 rotatedBounds[1] = Math.abs(rotatedBounds[1]);
621 mCropBounds.offset(-rotatedBounds[0]/2, -rotatedBounds[1]/2);
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
DBasicBitmapDrawable.java342 final Rect rotatedBounds = new Rect(bounds); in draw() local
343 RectUtils.rotateRect(orientation, bounds.centerX(), bounds.centerY(), rotatedBounds); in draw()
348 onDrawBitmap(canvas, sRect, rotatedBounds); in draw()