Calculates the sine of an angle. This function expects the values of the angle parameter to be provided in radians (values from 0 to 6.28). Values are returned in the range -1 to 1. @webref math:trigonometry @webBrief Calculates the sine of an angle @param angle an angle in radians @see PApp
(float angle)
| 4330 | * @see PApplet#radians(float) |
| 4331 | */ |
| 4332 | static public final float sin(float angle) { |
| 4333 | return (float)Math.sin(angle); |
| 4334 | } |
| 4335 | |
| 4336 | /** |
| 4337 | * |
no outgoing calls
no test coverage detected