Difference between revisions of "Asin - Math"
Jump to navigation
Jump to search
m
→Examples: Floatified afValue
imported>JLundin |
imported>JustinOther m (→Examples: Floatified afValue) |
||
Line 19: | Line 19: | ||
== Examples == | == Examples == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
float x = math.asin(1) ; x == 90 | float x = math.asin(1.0) ; x == 90 | ||
float y = math.asin(0) ; y == 180 | float y = math.asin(0.0) ; y == 180 | ||
</source> | </source> | ||