Home | History | Annotate | Download | only in common

Lines Matching defs:cropRect

110         RectF cropRect = new RectF();
113 cropRect.top = 0;
114 cropRect.bottom = inHeight;
115 cropRect.left = (inWidth - (outWidth / (float) outHeight) * inHeight) / 2;
116 cropRect.right = inWidth - cropRect.left;
118 cropRect.right -= cropRect.left;
119 cropRect.left = 0;
122 cropRect.left = 0;
123 cropRect.right = inWidth;
124 cropRect.top = (inHeight - (outHeight / (float) outWidth) * inWidth) / 2;
125 cropRect.bottom = inHeight - cropRect.top;
127 return cropRect;