Home | History | Annotate | Download | only in camera

Lines Matching refs:Math

113                     int d  = (int) Math.round(Math.cos(/*45deg*/Math.PI / 4D)
188 (int) Math.sqrt(distX * distX + distY * distY);
191 if (Math.abs(delta) <= hysteresis) {
192 if (Math.abs(distY) > Math.abs(distX)) {
219 if ((Math.abs(r.left - x) < hysteresis) && verticalCheck) {
222 if ((Math.abs(r.right - x) < hysteresis) && verticalCheck) {
225 if ((Math.abs(r.top - y) < hysteresis) && horizCheck) {
228 if ((Math.abs(r.bottom - y) < hysteresis) && horizCheck) {
275 Math.max(0, mImageRect.left - mCropRect.left),
276 Math.max(0, mImageRect.top - mCropRect.top));
279 Math.min(0, mImageRect.right - mCropRect.right),
280 Math.min(0, mImageRect.bottom - mCropRect.bottom));
359 return new Rect(Math.round(r.left), Math.round(r.top),
360 Math.round(r.right), Math.round(r.bottom));