Asin - Math

Revision as of 19:11, 4 March 2010 by imported>Jlundin (New page: Category:Scripting Category:Papyrus '''Member of:''' Math Script Calculates the arcsine of the value it is given. The returned value is in degrees. == Syntax == <source lang=...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Math Script

Calculates the arcsine of the value it is given. The returned value is in degrees.

Syntax

float Function asin(float afValue) native global

Parameters

  • afValue: The value to get the arcsine of. This value must be no greater than 1, and no less then -1.

Return Value

The arcsine of the passed-in value, in degrees.

Examples

float x = asin(1) ; x == 90
float y = asin(0) ; y == 180

See Also