Name

tan()

Examples
a = 0.0
inc = TWO_PI / 50.0
for i in range(0, 100, 2):
    line(i, 50, i, 50 + tan(a) * 2.0)
    a = a + inc
Description 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.
Syntax
	tan(radians)
Parameters
radiansfloat: radian value, used to calculate the ration of the sine and cosine of an angle.
Related cos()
sin()
radians()

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.