Home | History | Annotate | Download | only in crop

Lines Matching refs:dX

189     public boolean moveCurrentSelection(float dX, float dY) {
199 mBoundedRect.moveInner(dX, dY);
202 float dx = 0;
206 dx = Math.min(crop.left + dX, crop.right - minWidthHeight) - crop.left;
212 dx = Math.max(crop.right + dX, crop.left + minWidthHeight)
235 dx, dy
239 dx = sp * bUnit[0];
241 RectF newCrop = fixedCornerResize(crop, movingEdges, dx, dy);
246 crop.left += dx;
252 crop.right += dx;
296 private static RectF fixedCornerResize(RectF r, int moving_corner, float dx, float dy) {
300 newCrop = new RectF(r.left, r.top, r.left + r.width() + dx, r.top + r.height()
303 newCrop = new RectF(r.right - r.width() + dx, r.top, r.right, r.top + r.height()
306 newCrop = new RectF(r.right - r.width() + dx, r.bottom - r.height() + dy,
310 + r.width() + dx, r.bottom);