Lua
C++
Edit

ACos

This function returns the arc cosine of the specified value.

Syntax

Parameter Description
value the cosine value

Returns

Returns the arc cosine.

Example

angle = -65.0

s = Sin(angle)
c = Cos(angle)
t = Tan(angle)

Print("Sin: " .. ASin(s))
Print("Cos: " .. ACos(c))
Print("Tan: " .. ATan(t))
Copyright © 2024 Ultra Software.
All rights reserved.