Difference between revisions of "Tan - Math"
Jump to navigation
Jump to search
imported>JLundin |
imported>JustinOther m (→Examples: Floatified float params) |
||
Line 19: | Line 19: | ||
== Examples == | == Examples == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
float x = math.tan(180) ; x == 0 | float x = math.tan(180.0) ; x == 0 | ||
float y = math.tan(45) ; y == 1 | float y = math.tan(45.0) ; y == 1 | ||
</source> | </source> | ||
Latest revision as of 10:53, 8 October 2012
Member of: Math Script
Calculates the tangent of the value (in degrees) it is given.
Syntax[edit | edit source]
float Function tan(float afValue) native global
Parameters[edit | edit source]
- afValue: The value to get the tangent of, in degrees.
Return Value[edit | edit source]
The tangent of the passed-in value.
Examples[edit | edit source]
float x = math.tan(180.0) ; x == 0
float y = math.tan(45.0) ; y == 1