( begin auto-generated from radians.xml ) Converts a degree measurement to its corresponding value in radians. 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 degrees)
| 4899 | * @see PApplet#degrees(float) |
| 4900 | */ |
| 4901 | static public final float radians(float degrees) { |
| 4902 | return degrees * DEG_TO_RAD; |
| 4903 | } |
| 4904 | |
| 4905 | /** |
| 4906 | * ( begin auto-generated from ceil.xml ) |