( begin auto-generated from sin.xml ) 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. ( end auto-generated ) @webref math:trigonometry @param angle an angle
(float angle)
| 4751 | * @see PApplet#radians(float) |
| 4752 | */ |
| 4753 | static public final float sin(float angle) { |
| 4754 | return (float)Math.sin(angle); |
| 4755 | } |
| 4756 | |
| 4757 | /** |
| 4758 | * ( begin auto-generated from cos.xml ) |
no outgoing calls
no test coverage detected