TAN(A)
Returns the tangent of A (expects Radians)
Float TAN(Float A)
A - Value representing angle in radians. If it is not of type float, it is implicitly converted to type float.
Tangent of A
> PRINT TAN(DEG_TO_RAD(0))
0.000000
> PRINT TAN(DEG_TO_RAD(30))
0.577350
> PRINT TAN(DEG_TO_RAD(45))
1.000000