Home | History | Annotate | Download | only in crop

Lines Matching refs:Math

48     // Math operations for 2d vectors
50 return Math.max(Math.min(i, high), low);
105 float length = (float) Math.sqrt(a[0] * a[0] + a[1] * a[1]);
114 float length = (float) Math.sqrt(b[0] * b[0] + b[1] * b[1]);
129 float length = (float) Math.sqrt(p[0] * p[0] + p[1] * p[1]);
152 return (float) Math.sqrt(a[0] * a[0] + a[1] * a[1]);
159 return Math.min(newWidth / oldWidth, newHeight / oldHeight);
163 Rect q = new Rect(Math.round(r.left), Math.round(r.top), Math.round(r.right),
164 Math.round(r.bottom));