Difference between revisions of "Tan - Math"
Jump to navigation
Jump to search
m
→Examples: Floatified float params
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> | ||