The tan command is used to calculate the tangent for any input angle. The input units are in degrees.
Picture the unit circle (a circle of radius 1.0 centered about the origin). If you were to imagine a unit vector rotating inside of the unit circle, the angle (in degrees) that the unit vector makes with the positive x-axis is the input argument theta. The slope of the unit vector is the return value of the tan function.
Math
tan value |
Name | Type | Required | Comments |
---|---|---|---|
value | float | yes | Float value of an angle in degrees. |
None
float
Returns a floating point value. tan is undefined at {..., -270, -90, 90, 270, ...}
float $temp = (tan (30));
// declares a variable for the tangent function
print (string ($temp));
// prints the output of the tangent function