Searched refs:rotatedBounds (Results 1 – 2 of 2) sorted by relevance
58 float[] rotatedBounds = new float[] { bounds.x, bounds.y }; in createThumbnail() local59 rotateMatrix.mapPoints(rotatedBounds); in createThumbnail()60 rotatedBounds[0] = Math.abs(rotatedBounds[0]); in createThumbnail()61 rotatedBounds[1] = Math.abs(rotatedBounds[1]); in createThumbnail()64 (int) rotatedBounds[0], (int) rotatedBounds[1], width, height, leftAligned); in createThumbnail()
85 float[] rotatedBounds = new float[] { bounds.x, bounds.y }; in readCroppedBitmap() local86 rotateMatrix.mapPoints(rotatedBounds); in readCroppedBitmap()87 rotatedBounds[0] = Math.abs(rotatedBounds[0]); in readCroppedBitmap()88 rotatedBounds[1] = Math.abs(rotatedBounds[1]); in readCroppedBitmap()90 cropBounds.offset(-rotatedBounds[0]/2, -rotatedBounds[1]/2); in readCroppedBitmap()