( begin auto-generated from degrees.xml ) Converts a radian measurement to its corresponding value in degrees. Radians and degrees are two ways of measuring the same thing. There are 360 degrees in a circle and 2 PI radians in a circle. For example, 90° = PI/2 = 1.5707964. All trigonometric fun
(float radians)
| 4881 | * @see PApplet#radians(float) |
| 4882 | */ |
| 4883 | static public final float degrees(float radians) { |
| 4884 | return radians * RAD_TO_DEG; |
| 4885 | } |
| 4886 | |
| 4887 | /** |
| 4888 | * ( begin auto-generated from radians.xml ) |