SIN(A)
Returns the sine of A (expects Radians)
Float SIN(Float A)
A - Value representing angle in radians. If it is not of type float, it is implicitly converted to type float.
Sine of A
> PRINT SIN(DEG_TO_RAD(0))
0.000000
> PRINT SIN(DEG_TO_RAD(30))
0.500000
> PRINT SIN(DEG_TO_RAD(60))
0.866025
> PRINT SIN(DEG_TO_RAD(90))
1.000000