Home | History | Annotate | Download | only in crop

Lines Matching defs:crop

17 package com.android.camera.crop;
190 RectF crop = mBoundedRect.getInner();
203 dx = Math.min(crop.left + dX, crop.right - minWidthHeight) - crop.left;
206 dy = Math.min(crop.top + dY, crop.bottom - minWidthHeight) - crop.top;
209 dx = Math.max(crop.right + dX, crop.left + minWidthHeight)
210 - crop.right;
213 dy = Math.max(crop.bottom + dY, crop.top + minWidthHeight)
214 - crop.bottom;
219 crop.left, crop.bottom
222 crop.right, crop.top
225 l1[1] = crop.top;
226 l2[1] = crop.bottom;
238 RectF newCrop = fixedCornerResize(crop, movingEdges, dx, dy);
243 crop.left += dx;
246 crop.top += dy;
249 crop.right += dx;
252 crop.bottom += dy;
254 mBoundedRect.resizeInner(crop);