OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MATH_PI
(Results
1 - 5
of
5
) sorted by null
/gdk/samples/PhotoEditor/src/com/android/photoeditor/
RectUtils.java
28
private static final float
MATH_PI
= (float) Math.PI;
29
private static final float DEGREES_TO_RADIAN =
MATH_PI
/ 180.0f;
42
adjustAngle = (float) Math.atan(h / -w) +
MATH_PI
+ degrees * DEGREES_TO_RADIAN;
45
adjustAngle = (float) Math.atan(h / w) -
MATH_PI
+ degrees * DEGREES_TO_RADIAN;
/gdk/samples/PhotoEditor/src/com/android/photoeditor/actions/
RotateView.java
47
private static final float
MATH_PI
= (float) Math.PI;
48
private static final float MATH_HALF_PI =
MATH_PI
/ 2;
49
private static final float RADIAN_TO_DEGREE = 180f /
MATH_PI
;
168
angle = angle -
MATH_PI
;
170
angle =
MATH_PI
+ angle;
ScaleWheel.java
44
private static final float
MATH_PI
= (float) Math.PI;
45
private static final float MATH_HALF_PI =
MATH_PI
/ 2;
48
private static final float ANGLE_SPANNED =
MATH_PI
* 4 / 3;
185
angle = angle -
MATH_PI
;
187
angle =
MATH_PI
+ angle;
ColorWheel.java
48
private static final float
MATH_PI
= (float) Math.PI;
49
private static final float MATH_HALF_PI =
MATH_PI
/ 2;
52
private static final float ANGLE_SPANNED =
MATH_PI
* 4 / 3;
237
angle = angle -
MATH_PI
;
239
angle =
MATH_PI
+ angle;
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
RotateView.java
47
private static final float
MATH_PI
= (float) Math.PI;
48
private static final float MATH_HALF_PI =
MATH_PI
/ 2;
49
private static final float RADIAN_TO_DEGREE = 180f /
MATH_PI
;
164
angle = angle -
MATH_PI
;
166
angle =
MATH_PI
+ angle;
Completed in 878 milliseconds