Home | History | Annotate | Download | only in util

Lines Matching refs:degrees

62      * 90-degrees are suppored, so the parameter 'rot90' specifies which
116 * @param rot90 the multiple of 90 degrees to rotate counterclockwise, one
185 * @param degrees the amount to rotate the image clockwise, in degrees.
189 int degrees) {
191 img.getHeight()), degrees);
203 * @param degrees The number of degrees to rotate the image *after*
211 Rect crop, int degrees) {
212 Preconditions.checkState((degrees % 90) == 0, "Rotation must be a multiple of 90 degrees," +
213 " was " + degrees);
215 degrees = ((degrees % 360) + (360 * 2)) % 360;
259 degrees = degrees % 360;
261 int rot90 = (360 - degrees) / 90;