Acos - Math

Member of: Math Script

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

SyntaxEdit

float Function acos(float afValue) native global

ParametersEdit

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

Return ValueEdit

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

ExamplesEdit

float x = acos(0) ; x == 90
float y = acos(-1) ; y == 180

See AlsoEdit