Difference between revisions of "Tan - Math"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Nali
imported>JLundin
Line 1: Line 1:
[[Category:Scripting]]
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:Papyrus]]
[[Category:Non-delayed Native Function]]
'''Member of:''' [[Math Script]]
'''Member of:''' [[Math Script]]



Revision as of 07:58, 12 September 2012

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

See Also