Tan - Math
Revision as of 08:05, 10 February 2012 by imported>Nali (→Examples)
Member of: Math Script
Calculates the tangent of the value (in degrees) it is given.
Syntax
float Function tan(float afValue) native global
Parameters
- afValue: The value to get the tangent of, in degrees.
Return Value
The tangent of the passed-in value.
Examples
float x = math.tan(180) ; x == 0
float y = math.tan(45) ; y == 1