Difference between revisions of "Atan - Math"
Jump to navigation
Jump to search
→Examples
imported>Jlundin (New page: Category:Scripting Category:Papyrus '''Member of:''' Math Script Calculates the arctangent of the value it is given. The returned value is in degrees. == Syntax == <source la...) |
imported>Nali |
||
Line 18: | Line 18: | ||
== Examples == | == Examples == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
float x = atan(0) ; x == 180 | float x = math.atan(0) ; x == 180 | ||
float y = acos(1) ; y == 45 | float y = math.acos(1) ; y == 45 | ||
</source> | </source> | ||