Calculates the ratio of the sine and cosine of an angle. This function expects the values of the angle parameter to be provided in radians (values from 0 to PI 2). Values are returned in the range infinity to -infinity . @webref math:trigonometry @webBrief Calculates the ratio o
(float angle)
| 4365 | * @see PApplet#radians(float) |
| 4366 | */ |
| 4367 | static public final float tan(float angle) { |
| 4368 | return (float)Math.tan(angle); |
| 4369 | } |
| 4370 | |
| 4371 | /** |
| 4372 | * |
no outgoing calls
no test coverage detected